body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f6f7fb;
}

/* Wrapper */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Main Box */
.auth-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.08);
  overflow: hidden;
}

/* LEFT PANEL */
.auth-left {
  padding: 70px 60px;
  background: linear-gradient(135deg,#7b2ff7,#f107a3);
  color: #fff;
}

.auth-left h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.auth-sub {
  opacity: .9;
  margin-bottom: 30px;
}

.auth-benefits {
  list-style: none;
  padding: 0;
}

.auth-benefits li {
  margin-bottom: 14px;
  font-size: 15px;
}

/* RIGHT PANEL */
.auth-right {
  padding: 70px 60px;
}

.auth-right h3 {
  font-size: 28px;
  margin-bottom: 25px;
}

/* FORM */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: .2s;
}

.form-group input:focus {
  border-color: #7b2ff7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(123,47,247,0.1);
}

/* LOGIN OPTIONS */
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.remember-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.forgot-link {
  color: #7b2ff7;
  text-decoration: none;
  font-weight: 500;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* BUTTON */
.btn-primary {
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg,#7b2ff7,#f107a3);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: .2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* Divider */
.divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.divider span {
  background: #fff;
  padding: 0 15px;
  color: #999;
  font-size: 14px;
}

.divider:before {
  content: "";
  height: 1px;
  width: 100%;
  background: #eee;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}

/* Links */
.auth-links {
  text-align: center;
  font-size: 15px;
  padding-top: 10px;
}

.auth-links a {
  color: #f107a3;
  font-weight: 600;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

/* ERROR */
.error {
  background: #ffe1e1;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #b20000;
}

/* Responsive */
@media (max-width: 768px) {
  .auth-box {
    grid-template-columns: 1fr;
  }

  .auth-left {
    text-align: center;
    padding: 40px;
  }

  .auth-right {
    padding: 40px;
  }
}



/* SUCCESS */
.success-box {
  background: #e7f8ed;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #146c43;
  font-size: 14px;
}



.remember-box input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #7b2ff7;
  cursor: pointer;
}



.auth-box {
  animation: fadeSlide .4s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



