:root {
  --card-curve: 6px;
  --card-box-shadow: 1px 5px 7.5px rgba(196, 196, 196, 0.2);
  --card-hover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
  --transformY: translateY(-0.5rem);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%; /* 1rem = 10px, 10px/16px = 62.5% */
  box-sizing: border-box;
}

body {
  font-weight: 300;
  color: #444;
  line-height: 1.9;
  background-color: #f3f3f3;
}

.oshia__addresses {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact__container {
  width: 85%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
  margin-left: 9rem;
  margin-bottom: 3rem;
  margin-top: 2rem;
}
.contact__container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact__container .content .left-side {
  min-width: fit-content;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content .left-side::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}
.content .left-side .details {
  margin: 14px;
  text-align: center;
}
.content .left-side .details i {
  font-size: 30px;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  text-shadow: 0.5rem 1rem 2rem rgb(0 0 0 / 20%);
  margin-bottom: 10px;
}
.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 14px;
  color: #afafb6;
}
.contact__container .content .right-side {
  width: 75%;
  margin-left: 75px;
}
/* .content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #3e2093;
} */
.right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #f0f1f8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.right-side .message-box {
  min-height: 110px;
}
.right-side .input-box textarea {
  padding-top: 6px;
}
.right-side .button {
  display: inline-block;
  margin-top: 12px;
}
.right-side .button input[type="button"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: linear-gradient(to right bottom, #7ed56f, #28b485);
  cursor: pointer;
  transition: all 0.3s ease;
}

.topic-text {
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  font-size: 2.3rem;
  font-weight: 600;
}

.button {
  background: linear-gradient(to right bottom, #7ed56f, #28b485);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  cursor: pointer;
  color: #fff;
  font-size: 1.6rem;
  transition: 0.3s ease-in-out;
}
.button:hover {
  background: #fff;
  border: solid #28b485 1px;
  color: #28b485;
}

#status.success {
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  font-size: 2.3rem;
  font-weight: 600;
  animation: alert 4s ease-out forwards;
  text-align: center;
}

#status.error {
  color: orangered;
  font-size: 2rem;
  animation: alert 4s ease forwards;
}

@keyframes alert {
  0% {
    opacity: 1;
    pointer-events: all;
  }

  90% {
    opacity: 1;
    pointer-events: all;
  }

  100% {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 950px) {
  .contact__container {
    width: 90%;
    padding: 30px 40px 40px 35px;
    margin-left: 4rem;
  }
  .contact__container .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}
@media (max-width: 820px) {
  .contact__container {
    margin: 40px 0;
    height: 100%;
    margin-left: 2rem;
  }
  .contact__container .content {
    flex-direction: column-reverse;
  }
  .contact__container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact__container .content .left-side::before {
    display: none;
  }
  .contact__container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}
