/* Google Fonts Link */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  width: 100%;
  min-height: 100vh;
  padding: 0 10px;
  display: flex;
  background: #151a2d;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.login_form {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 6px 0px 0px 6px;
  padding: 30px 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.login_wrapper {
  display: flex;
  width: 100%;
  max-width: 700px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.login_form,
.login_form_2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login_form_2{
  border: 1.5px solid #ecc576;
  border-left: none;
  border-radius: 0 6px 6px 0;
}

.login_form_2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 6px 6px 0;
}

.login_form h3 {
  font-size: 20px;
  text-align: center;
}

.login_form p {
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 20px;
}

.login_form .separator {
  position: relative;
  margin-bottom: 20px;
}

.login_form .separator span {
  background: #fff;
  z-index: 1;
  padding: 0 10px;
  position: relative;
  font-size: 20px;
  font-weight: 600;
}

.login_form .separator::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  height: 1px;
  background: #c2c2c2;
  display: block;
}

.input_box {
  margin-bottom: 18px;
}

.input_box label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.input_box input {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.85rem;
  background: #f8f8fb;
  border: 1px solid #dadaf2;
  border-radius: 5px;
  outline: none;
  transition: border 0.2s ease;
}

.input_box input:focus {
  border-color: #626cd6;
}

.password_box {
  position: relative;
}

.toggle_password {
  position: absolute;
  top: 70%;
  right: 16px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.1rem;
  color: #999;
  user-select: none;
}

/* Login button styling */
form button {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: none;
  background: #626cd6;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #4954d0;
}

.sign_up {
  font-size: 0.9rem;
  margin-top: 8px;
}

a {
  color: #626cd6;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}
.login_form_3{
    display: none;
}
@media screen and (max-width: 650px) {
  .login_form_2 {
    display: none;
  }
  .login_wrapper {
    flex-direction: column;
    width: 85% ;
  }
  .login_form {
    max-width: 100%; 
    border-radius: 6px; 
  }
  .login_form_3{
    display: block;
    margin-bottom: 20px;
  }
}
