body {
    background: linear-gradient(rgba(0, 86, 189, 0.7), rgba(0, 0, 0, 0.7)),
        url('/images/photo-1486406146926-c627a92ad1ab.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-card {
    background: rgb(231 242 255);
    backdrop-filter: blur(10px);
    /* Glass effect */
    border-radius: 15px;
    border: none;
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.logo-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo-container img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #0056b3;
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #003d82;
    transform: translateY(-2px);
}

.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
}

.form-label {
    font-weight: 500;
    color: #444;
}

.footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 1.5rem;
}