/* Specialized Styles for Standalone Login Page */

.login-page-body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #080c14;
  background-image: 
    radial-gradient(at 10% 10%, hsla(220, 60%, 10%, 1) 0, transparent 60%),
    radial-gradient(at 90% 10%, hsla(190, 80%, 12%, 0.7) 0, transparent 60%),
    radial-gradient(at 50% 90%, hsla(210, 40%, 8%, 1) 0, transparent 60%);
  background-size: cover;
  background-attachment: fixed;
  color: #f8fafc;
  padding: 1.5rem;
  box-sizing: border-box;
}

.login-card-container {
  width: 100%;
  max-width: 440px;
  position: relative;
}

.login-glow-backdrop {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.login-card {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  padding: 2.5rem;
}

.login-card:hover {
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(6, 182, 212, 0.1);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.login-brand .logo-accent {
  color: #06b6d4;
  font-weight: 400;
}

.login-subtitle {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0;
}

/* Tabs */
.login-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.login-tab-btn {
  flex: 1;
  background: transparent;
  border: 0;
  color: #94a3b8;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 0;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.login-tab-btn.is-active {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

/* Form Styles */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
}

.form-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: #06b6d4;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.btn-submit {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #ffffff;
  border: 0;
  padding: 0.8rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
  background: linear-gradient(135deg, #0891b2, #0e7490);
}

.btn-submit:active {
  transform: translateY(1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Feedback Notifications */
.login-message {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  display: none;
}

.login-message.is-error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.login-message.is-success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.login-message.is-info {
  display: block;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #22d3ee;
}

.back-to-home {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.back-to-home:hover {
  color: #94a3b8;
}
