html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background: linear-gradient(135deg, #003366 0%, #00539b 100%);
  min-height: 100vh;
}

.btn-gradient {
  background: linear-gradient(90deg, #6366f1 0%, #60a5fa 100%);
  color: #fff !important;
  border: none;
  transition: box-shadow 0.2s;
}
.btn-gradient:hover {
  box-shadow: 0 4px 16px 0 rgba(99,102,241,0.15);
  color: #fff !important;
}

/* PayPoint branding styles */
.pp-navbar {
  background: linear-gradient(90deg, #003366 0%, #00539b 100%);
  border-bottom: 3px solid #ffcc00;
}

.pp-navbar .navbar-brand {
  color: #ffcc00 !important;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.pp-footer {
  background: #003366;
  color: #ffcc00;
  border-top: 3px solid #ffcc00;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* PayPoint branding and layout styles */
.pp-main-container {
    min-height: 80vh;
}

.pp-card-container {
    max-width: 420px;
    width: 100%;
}

.pp-brand-color-primary {
    color: #003366;
}

.pp-brand-color-secondary {
    color: #00539b;
}

.pp-brand-color-accent {
    color: #ffcc00;
}

.pp-brand-weight-bold {
    font-weight: 600;
}

.pp-footer-brand {
    font-weight: 600;
}

/* Additional utility classes for consistent styling */
.pp-text-center {
    text-align: center;
}

.pp-mb-4 {
    margin-bottom: 1.5rem;
}

.pp-fs-5 {
    font-size: 1.25rem;
}

/* Password form specific styles */
.pp-password-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.pp-password-heading {
    color: #003366;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pp-form-group {
    margin-bottom: 1.5rem;
}

.pp-form-label {
    font-weight: 600;
    color: #003366;
    margin-bottom: 0.5rem;
    display: block;
}

.pp-form-control {
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: border-color 0.2s, box-shadow 0.2s;
    padding: 0.75rem;
}

.pp-form-control:focus {
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.pp-btn-primary {
    background: linear-gradient(90deg, #003366 0%, #00539b 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pp-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 51, 102, 0.2);
    color: white;
}

.pp-error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}