* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: sans-serif;
    background-color: whitesmoke; 
    padding-bottom: 350px; 
    position: relative;
}
.contact-container {
    height: 95vh;
    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-left-title hr {
    border: none;
    width: 120px;
    height: 5px;
    background-color: #a363aa;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-inputs {
    width: 80vw;
    max-width: 400px;
    height: 30px;
    border: 1px solid grey;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: black;
    border-radius: 3px;
}
.contact-left textarea {
    height: 120px;
    padding-top: 15px;
    border-radius: 3px;
    
    max-width: 820px;
}
.contact-inputs:focus {
    border: 2px solid #ff994f;
}
.contact-inputs::placeholder {
    color: #a9a9a9;
}
.submit-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 3px;
    background-color: #a363aa;
    cursor: pointer;
}
.contact-right img {
    width: 500px;
}
.message {
    font-weight: 500;
    font-family: lora;
    font-size: 18px;
    margin-left: 20px;
}
.form-names {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    max-width: 820px;
}


.contact-inputs-employs {
    width: 190px;
    height: 30px;
    border: 1px solid grey;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: black;
    border-radius: 3px;
    margin-left: -200px;
    z-index: 2;
}
.contact-inputs-employs:focus {
   border: 2px solid #ff994f; 
}
.contact-inputs-employs::placeholder {
    color: #a9a9a9;
}

@media (max-width: 830px) {
.form-names {
    flex-direction: column;
    row-gap: 20px;
    width: 90vw;

}
.contact-left textarea {
    max-width: 400px;
}
}

.dropdown-inputs {
  background-color: whitesmoke;
  color: #a9a9a9;
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid grey;
  border-radius: 3px;
  width: 50%;
}
.dropdown-inputs:focus {
   border: 2px solid #ff994f; 
}
.dropdown-inputs::placeholder {
    color: #a9a9a9;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  width: 400px;
}
.new-div {
    display: flex;
    gap: 10px;
}
@media (max-width: 830px) {
    .new-div {
        width:90vw;
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 10px;
    }
    .dropdown {
        width: 100%;
    }
    .contact-inputs-employs {
        width: 80%;
        margin-left: 0;
    }
    .dropdown-inputs {
        width: 100%;
    }
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-inputs option {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  overflow:auto;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: rgb(192, 192, 192) ;}








