/* public/css/org-auth.css */

/* General styles from guest.blade.php */
.login-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

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

.login-logo img {
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.login-logo img:hover {
  transform: scale(1.05);
}

.login-logo a {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  display: block;
  margin-top: 1rem;
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.95);
}

.login-card-body {
  padding: 2.5rem;
}

.form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.input-group:focus-within {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.input-group .form-control {
  border: none;
  box-shadow: none;
}

.input-group .form-control:focus {
  border: none;
  box-shadow: none;
}

.input-group-text {
  background-color: transparent;
  border: none;
  color: #999;
}

.forgot-password-link {
  color: #667eea;
  text-decoration: none;
}

.forgot-password-link:hover {
  text-decoration: underline;
}

.icheck-primary label {
  font-weight: normal;
  color: #555;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  padding: 0.85rem 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(102, 126, 234, 0.5);
}
