
.contact{
    width: 100%;
    height: auto;
    padding-top: 200px;
    padding-bottom: 200px;
    padding-left: 150px;
    padding-right: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact__container{
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

.contact__container h1{
    height: auto;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000000;
}

.contact__container p{
    height: auto;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000000;
}

.contact__container__form{
    width: 100%;
    max-width: 800px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    
}

.contact__container__form__inputline{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact__container__form__inputline input, select{
    width: 50% !important;
}

.contact__container__form input{
    width: 100%;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    background: #D9D9D9;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #525252;

}


.contact__container__form select {
    width: 100%;
    height: 50px;
    padding: 0 40px 0 20px;
    border: none;
    background: #D9D9D9;
    border-radius: 5px;
    font-size: 18px;
    color: #525252;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact__container__form textarea{
    width: 100%;
    height: 200px;
    padding: 20px;
    border: none;
    background: #D9D9D9;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #525252;
    outline: none;
    max-width: 100%;
    max-height: 300px;
    min-width: 100px;
}

.contact__container__form input::placeholder{
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #525252;
}

.contact__container__form button{
    width: 200px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1F1F1F;
    border-radius: 50px;
    color: white !important;
    transition: all ease-in-out 0.5; 
    border: none;
    cursor: pointer;
}

.contact__container__form button:hover{
    background: #333333 !important;
}
@media screen and (max-width: 860px) {
    .contact__container__form__inputline{
        flex-direction: column;
    }

    .contact__container__form__inputline input, select{
        width: 100% !important;
    }
}

@media screen and (max-width: 760px) {
    .contact{
        padding-left: 50px;
        padding-right: 50px;
    }
    .contact__container h1{
        font-size: 32px;
    }

    .contact__container p{
        font-size: 18px;
    }

}