* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'outfit';
    background-color: #2c3e50;
    background: #2c3e50;
    background-repeat: no-repeat;
    background-position: right;
    height: 55rem;
    /* overflow-y: hidden; */
   
}

/* body .navigation{
    align-items: start;
    justify-self:start;
} */

/* body::-webkit-scrollbar {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(to right bottom, rgb(255, 255, 255), rgb(190, 241, 192), rgb(4, 146, 23));
    border-radius: 5rem;
}

body::-webkit-scrollbar-track {
    background: linear-gradient(to left bottom, rgb(255, 255, 255), rgb(190, 241, 192), rgb(4, 146, 23));
} */

.container {
    height: 100dvh;
    padding-top: 60px;
    padding-bottom: 60px; /* Added padding to the top */
    
}

.navigation button {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgb(218, 215, 215);
    color: blanchedalmond;
    /* display: flex;
    
    justify-content: start; */
    margin: 35px ;
    background: #2c3e50;
    border-radius: 13px;
}

.navigation button a {
color: #fff;    text-decoration: none;
}


.contact-form{
    align-content: center;
    width: 100%;
    /* height: 800px; */
    display: flex;
    /* border: 1px solid red; */
    justify-content: center;
    align-items: center;
    padding-bottom: 60px;
}
.contact-left {
    width: 35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    justify-items: center;
    border-radius: 20px;
    /* height: 100dvh; */
    /* border: 1px solid green; */
    background: rgb(255, 255, 255);
}


label{
    color: rgb(0, 0, 0);
}
.contact-title h3 {
    font-weight: 900;
    gap: 3rem;
    color:  rgb(0, 0, 0);
    text-align: center;
    font-size: 14px;
    padding-top: 20px;

}


.contact-inputs {
    /* width: 350px;
    height: 40px; */
    padding: 1rem 6rem 1rem;
    border: none;
    outline: none;
    font-weight: 500;
    color: #000000;
    /* background: rgb(209, 208, 208); */
    border: 1px solid rgb(199, 198, 198);
    border-radius: 50px;
}



.contact-left textarea {
    height: 100px;
    border-radius: 20px;
}


/* .contact-inputs::placeholder {
    color: #f50808;
} */

.contact-left button {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 15px;
    color: #fff;
    background: #2c3e50;
    gap: 8px;
    border: none;
    border-radius: 50px;
    margin-bottom: 10px;
}




/* small screen */


@media (max-width: 767.98px){
    .contact-left{
        width: 20rem;
    }
    .contact-inputs{
        padding: 1rem 3rem .5rem;
    }
}

/* medium screen */
@media (min-width: 768px) and (max-width: 991.98px){
    body{
        height: 70rem;
    }
    .contact-left{
        width: 500px;
        height: 800px;
    }
    .contact-inputs{
        height: 40px;
    }

    .contact-inputs text-area{
      height: 550px;
    }

}



