.form-contacto
{
    color: var(--color-de-texto);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
    align-items: center;
}

.form-contacto__izquierda
{
    display: none;
}

.form-contacto__texto
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-contacto__titulo
{
    font-weight: 700;
    font-size: 1.4rem;
    padding-bottom: .5rem;
}

.form-contacto__subtexto
{
    font-weight: 500;
    font-size: 1rem;
}

.form-contacto__form
{
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-contacto__input
{
    width: 100%;
    height: 56px;
    font-weight: 400;
    font-family: 'Raleway';
    font-size: 16px;
    color: black;
    background-color: rgba(71, 71, 161, 0.212);
    box-shadow: 0 0 1.4vw rgba(0,0,0,0.5), 0 0 0 .15vw transparent;
    border-radius: 0.4vw;
    border: none;
    outline: none;
    padding: 0.4vw;
    transition: .4s;
}

.form-contacto__input:hover 
{
    box-shadow: 0 0 0 .25vw rgba(2, 182, 253, 0.979);
}

.form-contacto__input:focus 
{
    box-shadow: 0 0 0 .25vw #001524;
}

.form-contacto__textarea
{
    resize: vertical;
    width: 100%;
    font-weight: 400;
    font-family: 'Raleway';
    font-size: 16px;
    color: black;
    background-color: rgba(71, 71, 161, 0.212);
    box-shadow: 0 0 1.4vw rgba(0,0,0,0.5), 0 0 0 .15vw transparent;
    border-radius: 0.4vw;
    border: none;
    outline: none;
    padding: 0.4vw;
    transition: .4s;
}

.form-contacto__textarea:hover 
{
    box-shadow: 0 0 0 .25vw rgba(2, 182, 253, 0.979);
}

.form-contacto__textarea:focus 
{
    box-shadow: 0 0 0 .25vw #001524;
}


/*Botón enviar mensaje*/
.contacto__btn
{
    padding: 0.8em 1.8em;
    border: 2px solid #001524;
    position: relative;
    overflow: hidden;
    background-color: #001524;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
    z-index: 1;
    font-family: inherit;
    color: #17C3B2;
    cursor: pointer;
}

.contacto__btn::before 
{
    content: '';
    width: 0;
    height: 300%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #17C3B2;
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.contacto__btn:hover 
{
    color: #001524;
}

.contacto__btn:hover::before 
{
    width: 85%;
}

.footer
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-image: radial-gradient(circle at 41.9% 50.71%, #005d8b 0, #001524 50%, #000000 100%);
    color: #fff;
    text-align: center;
}

/*Estilos para alerta de swal*/
.swal-modal 
{
    background-color: rgba(32, 57, 80, 0.829);
    border: 3px solid #001524;
    color: wheat;
}

.swal-overlay 
{
    background-color: rgba(43, 72, 165, 0.301);
}
.swal-title 
{
    margin: 0px;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.21);
    margin-bottom: 28px;
    color: #fff;
    text-align: center;
}

.swal-text 
{
    padding: 17px;
    display: block;
    margin: 10px;
    text-align: center;
    color: #fff;
}

.swal-button 
{
    border-radius: 15px;
    background-color: #001524;
    border: 1.5px solid #5976d8;
}

@media screen and (min-width: 767px)
{
    .form-contacto__input
    {
        height: 56px;
    }
}

@media screen and (min-width: 1024px)
{

    .form-contacto__contacto
    {
        display: flex;
    }

    .form-contacto__izquierda 
    {
        display: flex;
        width: 40%;
        height: 593px;
    }

    .form-contacto__img
    {
        width: 100%;
    }

    .form-contacto__texto 
    {
        padding-left: 5%;
        width: 55%;
    }

}
