.contactus-page {
  width: 100%;
  background-color: rgb(182 216 253);
  display: flex;
  justify-content: center;
  padding-bottom: 10rem;
}
.contactus-main {
  width: 90%;
  background-color: rgb(182 216 253);
  display: flex;
  justify-content: space-between;
}

.contactus-main-left {
  background-color: rgb(0, 0, 0);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 60%;
  padding: 3em 2em;
  gap: 2em;
  border-radius: 10px;
}

.contactus-main-left input {
  background-color: black;
  border: none;
  border-bottom: 1px solid white;
  width: 80%;
  padding: 1em;
}
.contactus-main-left input::placeholder {
  color: white;
}

.contactus-main-right {
  display: flex;
  flex-direction: column;
  text-align: end;
  gap: 3em;
  padding: 1em;
}
.contactus-main-right > div {
  display: flex;
  flex-direction: row;
  gap: 1em;
  justify-content: end;
  align-items: center;
}

input {
  outline: none;
  color: rgb(255, 255, 255);
}
