
/* Medical Professional Login Theme */
.fi-simple-layout {
    background-color: #e6f2f8; /* Soft blue base */
    background-image:
        linear-gradient(rgba(230, 242, 248, 0.9), rgba(230, 242, 248, 0.9)),
        url('../img/aci_img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.fi-login-card,.fi-sidebar-nav {
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(31, 102, 156, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    padding: 2.5rem;
}

.fi-login-button {
    background-color: #2b6cb0;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.fi-login-button:hover {
    background-color: #2c5282;
    transform: translateY(-1px);
}

.fi-login-title {
    color: #2b6cb0;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fi-login-description {
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Modern medical card */
.medical-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
    border-left: 4px solid #0d9488;
    transition: transform 0.2s ease;
  }

  .medical-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.15);
  }

  /* Emergency indicator */
  .emergency-badge {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    animation: pulse 2s infinite;
  }
