/*!****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/login/auth.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************/
.auth-page {
  min-height: calc(100vh - 200px);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.auth-page::before,
.auth-page::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 219, 254, 0.4) 0%, rgba(191, 219, 254, 0) 70%);
  pointer-events: none;
}

.auth-page::before {
  top: -140px;
  right: -120px;
}

.auth-page::after {
  bottom: -160px;
  left: -140px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.35) 0%, rgba(196, 181, 253, 0) 70%);
}

.auth-card {
  width: 100%;
  max-width: 1100px;
  margin: 0 1rem;
  background: white;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.auth-panel {
  padding: 2.5rem;
}

.auth-panel-left {
  background: #e9efff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.auth-panel-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 0.5rem 0;
}

.benefit-content p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.auth-form-container {
  width: 100%;
  max-width: 520px;
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #eef2ff;
  color: #4338ca;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.auth-form-container h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #000;
  margin: 0 0 0.75rem 0;
}

.auth-subtitle {
  font-size: 1rem;
  color: #4b5563;
  margin: 0 0 2.5rem 0;
  line-height: 1.5;
}

.login-form {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 2px solid #3f3f46;
  border-radius: 0;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
  background: transparent;
  color: #111827;
  caret-color: #4338ca;
}

.form-input:focus {
  outline: none;
  border-bottom-color: #4338ca;
  box-shadow: none;
}

.form-input::placeholder {
  color: #9ca3af;
}

.proceed-btn {
  width: 100%;
  padding: 0.95rem;
  background: linear-gradient(135deg, #8b8cf5 0%, #b6a6ff 100%);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.proceed-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(139, 140, 245, 0.35);
}

.proceed-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.alert {
  padding: 0.875rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.alert-error {
  background-color: #FEE2E2;
  color: #DC2626;
  border: 1px solid #FCA5A5;
}

.auth-footer {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.auth-footer a {
  color: #003d7a;
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .auth-card {
    grid-template-columns: 1fr;
  }

  .auth-panel {
    padding: 2rem;
  }

  .auth-panel-left {
    order: 2;
  }

  .auth-panel-right {
    order: 1;
  }
}

@media (max-width: 768px) {
  .auth-page {
    padding: 1rem 0;
  }

  .auth-card {
    border-radius: 18px;
  }

  .benefit-icon {
    width: 36px;
    height: 36px;
  }

  .benefit-icon svg {
    width: 28px;
    height: 28px;
  }

  .benefit-content h3 {
    font-size: 1rem;
  }

  .benefit-content p {
    font-size: 0.85rem;
  }

  .auth-form-container h1 {
    font-size: 1.6rem;
  }

  .auth-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .auth-panel {
    padding: 1.5rem;
  }

  .auth-form-container h1 {
    font-size: 1.4rem;
  }
}

