.auth-container {
  max-width: 960px;
  margin: 40px auto;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* LOGIN WRAPPER ONLY */
.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 16px;
}

/* COMMON FORM STYLES */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  width: 100%;
  box-sizing: border-box;
  padding: 32px;
  background: #fff;
}

.auth-form h2 {
  font-size: 28px;
  font-weight: 600;
}

.auth-form label {
  font-weight: 500;
  font-size: 14px;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  border: 1px solid #4CAF50;
  padding: 12px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.input-password-wrapper {
  position: relative;
}

.input-password-wrapper .toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.btn-primary {
  background: #00992B;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s;
  width: 30%;
}

.btn-primary:hover {
  background: #007a22;
}

.switch-auth-view {
  color: #00992B;
  font-size: 14px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

/* SIGNUP GRID LAYOUT */
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
}

.signup-grid .auth-form {
  margin: 0;
  padding: 32px;
}

.signup-image {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.signup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
  .signup-grid {
    grid-template-columns: 1fr;
  }

  .auth-container {
    padding: 24px 16px;
    margin: 20px auto;
  }

  .auth-wrapper {
    padding: 24px 16px;
  }

  .auth-form {
    width: 100%;
    padding: 0;
  }

  .signup-grid .auth-form {
    padding: 24px 0;
  }

  .signup-image {
    height: 220px;
  }

  .auth-form h2 {
    font-size: 22px;
  }

  .auth-form input {
    font-size: 13px;
  }

  .btn-primary {
    font-size: 13px;
    padding: 10px;
    width: 30%;
  }

  .switch-auth-view {
    font-size: 13px;
  }
}
