@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family:rubik, sans-serif;

}
.contact-container {
  width: 100vh;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20.5rem;
  margin-top: 3rem;
  border-radius: 10px;
  
}
@media screen and (max-width: 450px) {
  .contact-container {
    width: 95vw;
    height: 50vh;
    margin-left: 10px;
    margin-top: 8rem;
  }
}
.contact-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contact-left-title {
  font-weight: 500;
  font-size: 30px;
  color: #ffffff;
  text-shadow: 1px 2px 3px gray;
}
body.light-mode .contact-left-title{
    color: black;
}
@media screen and (max-width: 450px) {
  .contact-left-title {
    font-size: 20px;
    align-items: center;
}
}
body.light-mode .contact-inputs{
    background-color: whitesmoke;
    color: #000;
}

   
.contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  border-radius: 50px;
  font-size: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  text-shadow: 1px 2px 3px rgb(192, 185, 185);
  background-color: rgb(26, 26, 26);
}

@media screen and (max-width: 450px) {
  .contact-inputs {
    width: 350px;
  }
}
.contact-left textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}
.contact-inputs:focus {
  border: 2px solid rgb(255, 64, 0);
}
.contact-inputs::placeholder {
  color: rgb(255, 255, 255);
}
body.light-mode .contact-inputs::placeholder{
    color: black;
}
button {
  font-weight: 600;
  font-size: 15px;
  color: white;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background-color: rgb(255, 55, 55);
  text-shadow: 1px 2px 3px rgb(30, 29, 29);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
button:hover {
  scale: 105%;
}
