*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Outfit';
    background-color: antiquewhite;
}
.contact-container{
    padding-top: 70px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-left-title h2{
    font-weight: 600;
    color: #a363aa;
    font-size: 40px;
    margin-bottom: 5px
}
.contact-inputs{
    width: 400px;
    height: 50px;
    border:none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}
.contact-left textarea{
    height: 120px;
    padding-top: 15px;
    border-radius: 20px;
}
.contact-inputs:focus{
    border: 2px solid #ff994f;
}
.contact-inputs::placeholder{
    color: #a9a9a9;
}
.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #ff994f, #fa6d86);
    cursor: pointer;
}
.contact-inputs {
    /* Add some width to the select elements */
    width: 200px;
  
    /* Add some padding to the select elements */
    padding: 8px;
  
    /* Add a border to the select elements */
    border: 1px solid #ccc;
  
    /* Add some border radius to the select elements */
    border-radius: 4px;
  
    /* Add some background color to the select elements */
    background-color: #fff;
  
    /* Add some font size and family to the select elements */
    font-size: 16px;
    font-family: Arial, sans-serif;
  
    /* Add some box shadow to the select elements */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Add some styling to the disabled and selected options */
  .contact-inputs option[disabled],
  .contact-inputs option[selected] {
    /* Hide the disabled and selected options by default */
    display: none;
  }
  
  /* Add some styling to the first option element */
  .contact-inputs option:first-child {
    /* Show the first option element */
    display: block;
  
    /* Add some color to the first option element */
    color: #999;
  }

@media (max-width:900px){
    .contact-inputs{
        width: 80vw;
    }
    
}