*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --color__ppal-fondo: #03368D;
    --color__sec-fondo:#3566a1;
    --color__terc-fondo:#3a679d;
    --color--tipografia:#ffff;
    --color--texto--bordes:#46972C;
    --fuente__titulos: "Montserrat", sans-serif;
    --fuente__parrafos: "Roboto", sans-serif ;
    --fuente__alternativo:"Raleway", sans-serif;
}

.conten__form {
    width: 100%;
    background: linear-gradient(#0f76f4b8, #1c5aa5d2) ,url(/images/fondoVerde.jpg);
    background-size: cover;
    background-position: center;
    padding: 1.2em;
    height: 100vh;
}

.conten__footer {
    display: grid;
    place-content: center;
}

.conten__footer .contacto__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em 0;
}

.conten__footer .contacto__footer .titulo__contacto--footer {
    font-size: 2em;
    text-align: center;
    padding: 1.3em;
    font-family: var(--fuente__titulos);
    color: aliceblue;
    letter-spacing:4px;
    font-weight: 600;
    animation: aparecerTexto 2s ease-in-out;
}

.conten__footer .contacto__footer .parrafo__footer {
    font-size: 1.2em;
    text-align: center;
    font-family: var(--fuente__titulos);
    color: white;
    letter-spacing:4px;
    font-weight: 600;
    animation: aparecerTexto 2s ease-in-out;
}

.conten__footer .form__footer {
    border: 1.2px solid rgb(8, 5, 185);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .5em;
    background-color: #03368de4;
    height: 380px;
    animation: aparecerForm .9s ease-in-out;
}

.conten__footer .form__footer input {
    width: 100%;
    height: 2em;
    margin: 12px auto;
    border: none;
    border-bottom: 1px solid rgba(241, 241, 246, 0.349);
    background-color: transparent;
}

.form__footer input::placeholder {
    color: aliceblue;
    font-size: 1.2em;
    letter-spacing: 3px;
    text-transform: capitalize;
}

.conten__footer .form__footer .form__contacto {
    display: flex;
    flex-direction: column;
    width: 100%;  
    padding:  3em;
}


label textarea {
    background-color: aliceblue;
    height: 120px;
    width: 100%;
    margin: 1em auto;
    border-radius: 8px;
    padding: 1em;
}

label textarea::placeholder {
    color: rgb(10, 10, 10);
    font-size: 1rem;
}

.form__contacto .btn__enviar {
    width: 60%;
    margin: auto;
    height: 2.5em;
    border-radius: 10px;
    border: none;
    font-size: 1.4rem;
    font-weight: 100;
    letter-spacing: 3px;
    color:var(--color--tipografia);
    background-color: #4f70a9;
}

.btn__volver {
    text-align: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    padding-top:2em ;
}

.btn__volver span {
    font-size: 3.2em;
    color: var(--color--tipografia);
    font-weight: 200;
}

@keyframes aparecerForm {
    from {
        opacity: 0;
        transform: translatex(-50%);
    }    

    to {
        opacity: 1;
        transform: translatex(0);
    }
}

@keyframes aparecerTexto {
    from {
        opacity: 0;
    }    

    to {
        opacity: 1;
    }
}