:root {
  --primary: #5b3cc4;
  --secondary: #7b6cf6;
  --bg: #f3f2ff;
  --text-dark: #1e1e2f;
  --text-light: #6c6c8a;
  --border: #dcdcf3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* MAIN WRAPPER */
.auth-wrapper {
  width: 100%;
  max-width: 920px;
}

/* CARD */
.auth-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* HERO */
.auth-hero {
  flex: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  padding: 48px;
}

.hero-content h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.92;
}

/* FORM */
.auth-form {
  flex: 1;
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}


.logo {
  height: 250px; 
  margin-bottom: 6px;
}

/* HEADING */
.auth-form h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* SOCIAL LOGIN */
.social-login {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  height: 44px;
  border-radius: 10px;
  border: none;
  background: #f1f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-light);
  cursor: pointer;
}

.social-btn img {
  height: 20px;
}

/* DIVIDER */
.divider {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  position: relative;
  margin: 10px 0;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--border);
  z-index: -1;
}

/* INPUTS */
input {
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0 14px;
  font-size: 15px;
}

input::placeholder {
  color: #a1a1c2;
}

input:focus {
  outline: none;
  border-color: var(--primary);
}

/* LOGIN BUTTON */
.login-btn {
  height: 46px;
  margin-top: 6px;
  border-radius: 12px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .auth-card {
    flex-direction: column;
  }

  .auth-hero {
    padding: 34px;
    text-align: center;
  }

  .auth-form {
    padding: 32px 24px;
  }

  .logo {
    height: 200px;
  }
}
