/* Custom styles for Login page - AI Medical Navigator */

/* Global styles */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navigation styles */
.navbar-brand {
    font-weight: bold;
}

.navbar-nav .nav-link {
    font-weight: 500;
}

/* Navbar logo styles */
.navbar-logo {
    height: 30px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

/* Button styles */
.btn {
    font-weight: 500;
    border-radius: 6px;
}

/* Login page styles */
.card.shadow {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Alert styles */
.alert {
    border-radius: 6px;
}

/* Form styles */
.form-control {
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Utility classes */
.text-muted {
    color: #6c757d !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
}