/* Google Font Link */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Ethiopic:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Serif Ethiopic", serif;
}

body{
  background-color: #FFF2D7;
}

.demo100 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-container {
  position: relative;
  max-width: 400px;
  width: 100%;
  padding: 30px;
  padding-right: 90px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  perspective: 2700px;
  margin-top: 20px;
}

.login-container .cover {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 50%;
  z-index: 98;
  transition: all 1s ease;
  transform-origin: left;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.login-container #flip:checked ~ .cover {
  transform: rotateY(-180deg);
}

.login-container .cover .front,
.login-container .cover .back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cover .back {
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.login-container .cover::before,
.login-container .cover::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: #ff4004;
  opacity: 1;
  z-index: 12;
  backface-visibility: hidden;
}

.login-container .cover::after {
  opacity: 0.1;
  transform: rotateY(180deg);
}

.login-container .cover img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 12;
}

.login-container .cover .text {
  position: absolute;
  z-index: 12; 
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cover .text .text-1,
.cover .text .text-2 {
  font-size: 26px;
  font-weight: 600;
  color: #FFF2D7;
  text-shadow: 1px 2px 10px #333;
  text-align: center;
}

.cover .text .text-2 {
  font-size: 15px;
  font-weight: 500;
}

.login-container .forms {
  height: 100%;
  width: 100%;
  background: #fff;
}

.login-container .form-content {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.form-content .login-form,
.form-content .signup-form {
  width: calc(100% / 2 - 5px);
}

.form-content .login-form {
  margin-top: -60px;
}

.forms .form-content .title {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

.forms .form-content .title:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 25px;
  background: #ff4004;
  border-radius: 10px;
}

.forms .signup-form .title:before {
  width: 20px;
}

.forms .form-content .input-boxes {
  margin-top: 30px;
}

.forms .form-content .input-box {
  display: flex;
  align-items: center;
  height: 50px;
  width: 120%;
  margin: 10px 0;
  position: relative;
}
.forms .form-content .fa-eye-slash {
  position: absolute;
  right: 0;
  cursor: pointer;
  color: #00000033;
}
.forms .form-content .fa-eye{
  position: absolute;
  right: 0;
  cursor: pointer;
  color: #00000033;
}

.form-content .input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 30px;
  font-size: 16px;
  /* background: #FFF2D7; */
  border-bottom: 2px solid #00000033;
  transition: all 0.3s ease;
}

.form-content .input-box input:focus,
.form-content .input-box input:valid {
  border-color: #ff4004;
}

.form-content .input-box i {
  position: absolute;
  color: #ff4004;
  font-size: 17px;
}

.forms .form-content .text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.forms .form-content .text a {
  text-decoration: none;
}

.forms .form-content .text a:hover {
  text-decoration: underline;
}

.forms .form-content .button {
  color: #fff;
  margin-top: 15px;
}

.forms .form-content .button input {
  color: #fff;
  background-image: linear-gradient(#ff400f, #F88C1F);
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
  border-bottom: none !important;
}

.forms .form-content .button input:hover {
  /* background: #ff4004; */
  background-image: linear-gradient(#ff400f, #F88C1F);
}

.forms .form-content label {
  color: #ff4004;
  cursor: pointer;
}

.forms .form-content label:hover {
  text-decoration: underline;
}

.forms .form-content .login-text,
.forms .form-content .sign-up-text {
  text-align: center;
  margin-top: 25px;
}

.container #flip {
  display: none;
}

@media (max-width: 730px) {
  .login-container .cover {
    display: none;
  }
  .form-content .login-form,
  .form-content .signup-form {
    width: 100%;
  }
  .form-content .signup-form {
    display: none;
  }
  .login-container .login-form .title {
    padding-top: 30px;
  }
  .login-container #flip:checked ~ .forms .signup-form {
    display: block;
  }
  .login-container #flip:checked ~ .forms .login-form {
    display: none;
  }
}


/* OTP */

.otp_form {
  /* background-color: #333; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 20px;
}
.input_container {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.otp_input {
  background-color: #FFF2D7;
  width: 40px;
  height: 40px;
  text-align: center;
  border: none;
  border-radius: 6px;
  caret-color: lightgray;
  outline: none;
  color: #333;
}
.otp_input:focus,
.otp_input:valid {
  background-color: lightgray;
  transition-duration: .3s;
}

.verify_btn {
  width: 100%;
  height: 30px;
  border: none;
  background-color: #F98866;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition-duration: .2s;
}
.otp_subheading {
  font-size: 15px;
}
.resend_btn {
  background-color: transparent;
  border: none;
  color: #ff4004;
  cursor: pointer;
  font-size: .8rem;
}

.logo-img img{
  width: 60%;
}
.logo-img  {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Divider with text */
.divider-with-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 80%; /* Adjust the width of the divider */
    margin: 0px auto;
}

.divider-with-text::before,
.divider-with-text::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ccc; /* Line color */
}

.divider-with-text span {
    padding: 0 10px;
    font-size: 16px;
    color: #555; /* Text color */
}