.main__form {
    /* display: flex;
    justify-content: center;
    align-items: center; */
}
.form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form__container {
    border: none;
    border-radius: 0;
    background-color: initial;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
}
/* Title */
.form__container--title {
    font-family: 'Roboto', sans-serif;
    color: var(--color-white);
    margin: 0;
    text-align: center;
    margin-bottom: 1rem;
}
/* Form */

.form__form--input {
    color: var(--color-white);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--color-app-primary);
    padding: 0.5rem 1rem;
    display: block;
    margin-bottom: 1rem;
    width: 100%;
    outline: none;
    box-sizing: border-box;
}
.form__form--input::placeholder {
    color: var(--color-white);
}
.form__form--btn {
    padding: 0.7rem 0;
    width: 60%;
    outline: none;
    color: var(--color-white);
    border: none;
    background-color: var(--color-app-primary);
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 100;
    letter-spacing: 1px;
    margin: 1rem 0 1.5rem;
    cursor: pointer;
    font-weight: bold;
}
label {
    color: var(--color-white);
    font: 400 13.3333px Arial;
    padding-left: 1rem;
    text-align: left;
}
select {
    width: 100%;
    font: 400 13.3333px Arial;
    color: var(--color-white);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--color-app-primary);
    padding-bottom: 0.5rem;
    padding-left: 0.8rem;
    margin-bottom: 1rem;
}
select::-ms-expand {
    display: none; 
}
select:hover,
select:focus {
    color: var(--color-white);
    background-color: var(--color-fondo__he);
    border: 1px solid var(--color-app-primary);
}
textarea {
    width: 100%;
    border: 1px solid var(--color-app-primary);
    margin-top: 0.2rem;
    background-color: var(--color-fondo);
    color: var(--color-white);
    margin-bottom: 1rem;
}
textarea::placeholder {
    color: var(--color-white);
}

span {
    font: 400 13.3333px Arial;
    color: var(--color-white);
}
.container__btn {
    width: 100%;
    text-align: center;
}
.label_date {
    display: block;
    width: 100%;
}
.input__date {
    display: block;
    width: 100%;
}