html {
  font-size: 14px;
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  /* height: 100vh; */
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  html, body {
    height: 100%;
    /* min-height: 100vh; */
  }
  body {
    display: flex;
    flex-direction: column;
  }
  main[role="main"] {
    flex: 1 0 auto;
  }
}

.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;
}

/* Add to site.css */
.bg-primary {
    background-color: #16213e !important;
}
.rounded-4 {
    border-radius: 1.5rem !important;
}
.card {
    border-radius: 1rem;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

/* Password Toggle Button Styles */
.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
    transition: color 0.2s ease;
}

.password-toggle-btn:hover {
    color: #495057;
}

.password-toggle-btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control.pr-5 {
    padding-right: 40px !important;
}

/* Landing Page Custom Styles */
.landing-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, #16213e 0%, #31416e 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    position: relative;
}
.landing-logo {
    max-width: 120px;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    background: #fff;
    padding: 10px;
}
.landing-icon {
    max-width: 56px;
    height: auto;
    border-radius: 1rem;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 8px;
}
.card {
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
}
.landing-hero h1, .landing-hero .display-3 {
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.landing-hero .btn-primary {
    background: #ffb347;
    border: none;
    color: #16213e;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.landing-hero .btn-primary:hover {
    background: #ffd580;
    color: #16213e;
}

@media (max-width: 767px) {
    .landing-hero {
        padding: 40px 0 20px 0;
        border: '1px solid #e5e5e5';
    }
    .landing-logo {
        max-width: 80px;
    }
    .landing-icon {
        max-width: 40px;
    }
    .service-section{
      overflow: hidden;
    }
}