@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: "Roboto", sans-serif;
}

html {
    height: 100%;
}

/* Ajout d'un conteneur pour flouter l'image */
body::before {
    content: "";
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: url('https://cdn.midjourney.com/46ba62b5-c87c-4819-b711-64eaaabe9fa8/0_2.png') no-repeat center center fixed;
    background-size: cover;
    filter: blur(15px); /* Ajustez le niveau de flou ici */
    z-index: -1;
}

html body {
    border-radius: 0;
    box-shadow: rgba(0,0,0,0.5) 0 0 30px;
}

.logo, h1, h2 {
    font-weight: bold;
}

input.accepted[type=submit], button.accepted, .button.accepted, main .application-status.accepted {
    background: #6248d4;
}

table.overview tbody tr td.status.accepted {
    color: #6248d4;
}

input.pending[type=submit],button.pending,.button.pending {
    background: #6a6a6a;
}

input[type=submit]:hover, button:hover, .button:hover {
    background: unset;
}

h2, table * {
    border-color: #3b3b3b!important;
}