.form {
    background-color: var(--formBackground-Color);
    border-radius: 20px;
    box-sizing: border-box;
    height: auto;
    padding: 1rem;
    width: 90vw;
    max-width: 600px;
    margin: auto;
    margin-top: 4rem;
    color: var(--black-color);
}
  
label {
    padding-top: 2rem;
    font-family: 'Courier New', Courier, monospace;
}

.reussi {
    font-size: 4rem;
    text-align: center;
    font-style: italic;
    padding: 2rem;
    line-height: 6rem;
    font-family: roboto;
    animation: slide-left 2s;
}

.title {
    color: var(--black-color);
    font-family: sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-top: 30px;
    text-align: center;
}
  
.subtitle {
    color: var(--black-color);
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.input {
    background-color: var(--formInput-Color);
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    font-size: 18px;
    height: 3vh;
    outline: 0;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
    width: 100%;
    padding: 1rem;
}
  
textarea.input {
    height: 120px;
}
  
.submit {
    background-color: var(--submit-color);
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: var(--black-color);
    cursor: pointer;
    font-size: 18px;
    font-weight: 300;
    height: 50px;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}
  
.submit:active {
    background-color: var(--submitValidated-color);
}