.contact__container {
    display: flex;
    flex-direction: column;
    margin: 7rem 0rem;
    text-transform: uppercase;
    padding-left: 2rem;
    gap: 70px;
    font-family: 'Poppins', sans-serif;
}

.contact__divisor {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    width: 200px;
    border-width: 2px;
    border-color: white;
    opacity: 0.7;
}
.contact__title {
    font-size: 1.5rem;
    font-weight: 510;
    text-transform: uppercase;
}

.contact__address {
    font-size: clamp(1.2rem,1.5vw,2rem);
    margin-bottom: 2rem;
}

.contact__social-medias {
    display: flex;
    list-style: none;
    gap: 25px;
    padding-left: 0px;
    margin-top: 20px;
}


/*Form contact */
.contact-contact-home .contact-form-container {
    width: 80%;
    margin: auto;
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.contact-contact-home .contact-form-container .contact__title {
    margin-bottom: 2rem;
    text-align: center;
}

.input-container {
    position: relative;
    margin-bottom: 30px;
}

#message {
    height: 120px;
}

.styled-input {
    width: 100%;
    padding: 0.8rem 1.8rem;
    font-size: 14px;
    border: none;
    color: #f5f5f5;
    background-color: #202122;
    transition: .35s cubic-bezier(.68,.16,.3,.84);
}

.styled-input:focus {
    outline: none;
    border-color: white;
    border: solid 1px white;
    box-shadow: 0 0 1px rgb(255, 255, 255);
}

.hidden-label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: none;
    padding: 0 5px;
    font-size: 14px;
    color: #d3d3cb;
    pointer-events: none;
    transition: transform 0.3s, font-size 0.3s, top 0.3s;
}

.hidden-label.mensaje {
    top: 23%;
}

.styled-input:focus + .hidden-label,
.styled-input.has-content + .hidden-label {
    transform: translateY(-130%) scale(1.4);
    font-size: 13px;
    font-weight: bold;
    color: white;
    top: 0;
}


.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: #000;
    background-color: #a8aaad;
    border: 2px solid;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    overflow: hidden;
    padding: 1rem;
    font-weight: 500;
    
}

.button:hover {
    background-color: rgb(18, 18, 18);
    color: white;
}



@media screen and (min-width: 600px) and (max-width:999px) {
    .contact-contact-home .contact-form-container {
        width: 70%;
        margin-top: 10rem;
        margin-bottom: 10rem;
    }

    .contact__title {
        font-size: 1.9rem;
    }

    .contact-contact-home .contact-form-container .contact__title {
        text-align: center;
    }

    .contact-email-telefono {
        display: flex;
        justify-content: space-between;
        gap: 40px;
    }
    .contact-email-telefono .input-container {
        width: 50%;
    }

}

@media screen and (min-width: 1000px) {
    .contact__container {
        display: flex;
        flex-direction: row;
        margin-top: 5rem;
        padding-left: 0px;
        justify-content: center;
        gap: 200px;
        height: 80vh;
        align-items: center;
    }

    .contact-contact-home .contact-form-container .contact__title {
        text-align: center;
    }

    .contact__title {
        font-size: 2.3rem;
    }

    .contact-contact-home .contact-form-container {
        width: 40%;
        margin-top: 10rem;
        margin-bottom: 15rem;
    }

    .contact-email-telefono {
        display: flex;
        justify-content: space-between;
        gap: 40px;
    }
    .contact-email-telefono .input-container {
        width: 50%;
    }
}



/* EJEMPLO */
.contenedor-img-contact img {
    width: 100%;
    height: 80vh;
}