/* Login Page Styles - Matches Shiftplus Theme */

/* Full height layout for authentication */
#layoutAuthentication {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#layoutAuthentication_content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  width: 100%;
}

#layoutAuthentication_content main {
  width: 100%;
}

#layoutAuthentication_footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* Background gradient matching main app */
body.bg-primary {
  background: linear-gradient(120deg, #2563eb 0%, #3b82f6 100%) !important;
  font-family: 'Inter', system-ui, sans-serif;
}

/* Login card styling */
.card {
  border: none;
  box-shadow: 0 8px 32px 0 rgba(37,99,235,0.15) !important;
  border-radius: 0.75rem !important;
}

.card-header {
  background: transparent;
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem 2rem 1rem 2rem;
}

.card-header h3 {
  color: #222;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0;
}

.card-body {
  padding: 2rem;
}

/* Form styling to match main app */
.form-floating > .form-control {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  padding: 1rem 0.75rem;
}

.form-floating > .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-floating > label {
  color: #6c757d;
  font-size: 0.875rem;
}

/* Button styling matching main app */
.btn-primary {
  background: #2563eb !important;
  border: none !important;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px 0 rgba(37,99,235,0.08);
  transition: background 0.18s;
}

.btn-primary:hover, .btn-primary:focus {
  background: #174ea6 !important;
  box-shadow: 0 4px 12px 0 rgba(37,99,235,0.15);
}

/* Links styling */
a.small {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}

a.small:hover {
  color: #174ea6;
  text-decoration: underline;
}

/* Footer styling */
footer {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

footer .text-muted {
  color: #6c757d !important;
}

footer a {
  color: #2563eb;
  text-decoration: none;
}

footer a:hover {
  color: #174ea6;
  text-decoration: underline;
}

/* No custom width constraints - using pure Bootstrap */

/* Responsive adjustments */
@media (max-width: 576px) {
  .card-header, .card-body {
    padding: 1.5rem;
  }
  
  .card-header h3 {
    font-size: 1.5rem;
  }
  
  /* Mobile responsive adjustments handled by Bootstrap */
  
  #layoutAuthentication_content {
    padding: 1rem 0;
  }
}

