/**

Jaune
F9A826

Bleu
0E8CCC

*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}

.font-2 {
    font-family: 'Jaldi', sans-serif;
}

.button, button {
    background: #0E8CCC;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    transition: 0.4s;
}

button:hover {
    cursor: pointer;
    opacity: 0.7;
}

.over {
    display: flex;
    position: fixed;
    z-index: 999999;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-left: 8px solid #555555;
    background-color: #efefef;
    color: #777;
}

.over a {
    text-decoration: none;
    font-size: 2.0em;
    color: #777;
}

.success {
    background: lightgreen;
    border-color: green;
    color: green;
}

.success a {
    color: green;
}

.error {
    background: rgb(255, 198, 198);
    border-color: tomato;
    color: tomato;
}

.error a {
    color: tomato;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 14px;
    color: #0E8CCC;
}

.form-group input, .form-group textarea, .form-group select {
    border: 1px solid #0E8CCC;
    padding: 0.5rem;
}

.form-group input:focus, .form-group textarea:focus, .form-group select {
    outline-color: #0E8CCC;
}