/* SmartBI Authentication Stylesheet (login/login.css) */

/* Core login container animation wrapper */
.login-card-wrapper {
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Background gradient blur elements */
.ambient-blur-circle {
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.6;
  z-index: 0;
  border-radius: 9999px;
  position: absolute;
}

.ambient-blur-1 {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, rgba(124, 58, 237, 0) 70%);
  width: 500px;
  height: 500px;
  top: -10%;
  left: -10%;
}

.ambient-blur-2 {
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0) 70%);
  width: 600px;
  height: 600px;
  bottom: -15%;
  right: -10%;
}

.ambient-blur-3 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0) 70%);
  width: 400px;
  height: 400px;
  top: 40%;
  left: 35%;
}

/* Input Fields Transition styling */
.auth-input-container {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Eye Toggle button hover feedback */
.password-toggle-btn {
  transition: color 0.2s ease, transform 0.2s ease;
}
.password-toggle-btn:hover {
  color: #7c3bed;
  transform: scale(1.1);
}
.password-toggle-btn:active {
  transform: scale(0.95);
}

/* Button transitions */
.auth-submit-btn {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-submit-btn:disabled {
  background-color: #cbd5e1 !important; /* Neutral grey disabled state matching screenshot */
  color: #94a3b8 !important;
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
}

/* Google Sign-in Card styling */
.sso-card {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.sso-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.sso-card:active {
  transform: translateY(0);
}

/* Form Container slide transition states */
.state-login .signup-only-field {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.state-signup .signup-only-field {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 1rem;
  pointer-events: auto;
}

