:root {
    --primary-blue: #0a3d62;
    --light-blue: #3498db;
    --background-color: #f8fafc;
    --card-shadow: 0 10px 30px rgba(10, 61, 98, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: #333;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(10, 61, 98, 0.07) 0%, transparent 50%);
    background-attachment: fixed;
}

#app {
    min-height: 100vh;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 32px;
}

.navbar-brand .logo-text {
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.login-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.3s ease;
}


.login-card:hover {
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.input-focused {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.2);
}

/* Improved Form Elements */
.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1.5px solid #e0e6ed;
    padding: 12px 15px;
    font-size: 15px;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--light-blue);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    font-size: 14px;
}

/* Button Enhancement */
.btn-primary {
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 61, 98, 0.2);
}

/* Enhanced Forgot Password Link */
.forgot-password {
    color: var(--light-blue);
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s ease;
}

.forgot-password:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

/* Responsive Adjustments */
.login-page {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.card-body {
    padding: 35px 30px;
}

/* Title & Subtitle */
.text-center h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.text-center p {
    color: #6b7280;
    margin-bottom: 25px;
}

/* Remember Me Checkbox */
.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1.5px solid #cbd5e0;
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.form-check-label {
    padding-left: 5px;
    font-size: 14px;
}

/* Footer Copyright Text */
.text-muted {
    color: #718096 !important;
}

/* Animated Input Effects */
.form-control:focus {
    transform: translateY(-1px);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .card-body {
        padding: 30px 20px;
    }

    .login-card {
        margin: 0 10px;
    }
}

@media (min-width: 992px) {
    .login-card {
        max-width: 480px;
    }

    .card-body {
        padding: 40px 35px;
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add animation to the login card */
.login-card {
    animation: fadeIn 0.5s ease-in-out;
}




/* Animation classes */
.fade-in-up {
    animation: fadeInUp;
    animation-duration: 0.8s;
}

.fade-in {
    animation: fadeIn;
    animation-duration: 1s;
}

.pulse {
    animation: pulse;
    animation-duration: 0.5s;
}

/* Input focus animation */
.input-focused {
    transform: translateY(-3px);
}

/* Logo animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Wave effect for login button */
@keyframes wave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-wave:hover {
    background-image: linear-gradient(90deg, var(--primary-blue), #2980b9, var(--primary-blue));
    background-size: 200% 100%;
    animation: wave .5s ease infinite;
}