/* COLOR PALETTE
https://coolors.co/f7fff7-343434-2f3061-ffe66d-a1c6d7
#F7FFF7 - almost white
#343434 - dark gray - almost black
#2F3061 - blue dark
#FFE66D - yellow
#A1C6D7 - blue light
#4A051C - Dark Sienna (burgundy)
#5a091e - Haley burgendy (preferred) RGB = 90,9,30
#0a369d - Egyptian Blue (dark blue)  RGB = 10, 54, 157
*/
/* Resets */
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  }

/* Global styles */

.contact-container{
    height: 100vh;
    display: flex;
    flex-direction: row;    
    align-items: top; /* center;*/
    justify-content: space-evenly;
    margin-top: 25px;
}
.contact-left{
    display: flex;
    flex-direction: column;
    align-self: start;
    gap: 20px;
}

.contact-left-title h2{
    font-weight: 600;
    color: #5a091e;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr{
    border: none;
    width: 165px;
    height: 5px;
    background-color: #5a091e;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 20px;
}

.contact-left textarea{
    height: 140px;
    padding-top: 25px;
    border-radius: 10px;
}
.contact-left textarea{
    font-family: 'Montserrat';
    font-weight: 500;
    color: #000000;
}

.contact-inputs:hover{
    border: 3px solid #0a369d;    
}
.contact-inputs::placeholder{
    color: #5a091e; 
}

/*.on-submit:hover{
    border: 10px solid #0a369d;    
}*/

.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 20px;
    background-image: linear-gradient(to right, #5a091e, #5a091e95, #0a369d50, #5a091e97, #5a091e);/*#0a369d50;*/
    cursor: pointer;
}

.bg-body{
     background-image: linear-gradient(to right, #0a369d, #0a369d97, /*#5a091e97,*/ #5a091e);    
}

.contact-left button img{
    height: 15px;
    width: 15px;
}

.contact-left button{
    width: 125px;
}

.contact-right img{
    width: 500px;
    margin-top: 90px;
}

@media (max-width:800px){
    .contact-inputs{
        width: 80vw;
    }
    .contact-right{
        display: none;
    }
}