/* -------------------------------------------font------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
/*------------------------------------------------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}
/* 
.signup-section-main {
  display: flex;
  align-items: center;
  justify-content: center;
}
.signup-section {
  display: flex;
  height: 100vh;
  padding: 40px 120px;
  justify-content: space-between;
  max-width: 1400px;
  gap: 70px;
  width: 100%;
}
.signup-form-container {
  width: 90%;
}

.left-image-area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.left-image-area img {
  height: 100%;
  min-height: 500px;
  border-radius: 20px;
  object-fit: cover;
}

.right-input-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.signup-heading {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.signup-text {
  margin: 18px 0;
  font-size: 13px;
  letter-spacing: 0.25px;
  line-height: 24px;
  font-weight: 600;
}
.signin-input {
  padding: 5px 12px;
  height: 45px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  background: #fff;
  transition: all ease-in-out 0.15s;
}
.signin-input:hover {
  border: 1px solid #000;
}
.signin-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.login-btn,
.createacc-btn {
  padding: 5px 15px !important;
  min-height: 45px !important;
  font-size: 15px !important;
  line-height: 24px !important;
  font-weight: 800 !important;
  border: none !important;
  border-radius: 12px !important;
}
.login-btn {
  background-color: #171717 !important;
  color: #fff !important;
}
.createacc-btn {
  background-color: #fff !important;
  color: #9747ff !important;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) !important;
} */
.signup-section-main {
  display: flex;
  height: 100vh;
}

.signup-section {
  display: flex;
  width: 100%;
}

.left-image-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-image-area .obimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-input-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.signup-form-container {
  max-width: 400px;
  width: 100%;
}

.signin-input {
  width: calc(100% - 30px);
  padding: 10px;
  margin: 10px 0;
  padding: 5px 12px;
  height: 45px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  background: #fff;
  transition: all ease-in-out 0.15s;
}

.password-container {
  position: relative;
  display: flex;
  align-items: center;
}

.toggle-password {
  cursor: pointer;
  position: absolute; /* Ensure the icon stays in place */
  right: 10px; /* Adjust for positioning */
  z-index: 2; /* Ensure it's above the password input */
  background-color: #fff;
}

.toggle-icon {
  width: 24px; /* Adjust icon size as needed */
  height: 24px;
  fill: #555; /* Adjust icon color */
}

.btn {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.signin-form .login-btn {
  background-color: #171717;
  color: #fff;
  padding: 5px 15px !important;
  min-height: 45px !important;
  font-size: 15px !important;
  line-height: 24px !important;
  font-weight: 800 !important;
  border: none !important;
  border-radius: 12px !important;
}

.signin-form .createacc-btn {
  background-color: #fff;
  color: #9747ff;
  padding: 5px 15px !important;
  min-height: 45px !important;
  font-size: 15px !important;
  line-height: 24px !important;
  font-weight: 800 !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.signup-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: left;
}

.signup-text {
  margin: 18px 0;
  font-size: 13px;
  letter-spacing: 0.25px;
  line-height: 24px;
  font-weight: 600;
  text-align: left;
}
