.login-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

    .login-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

.login-header {
    font-size: 2rem;
    font-weight: 700;
    color: #D52B1E;
    margin-bottom: 20px;
}

.sign-in-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 25px;
}

.login-text {
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.login-textbox {
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 100%;
}

    .login-textbox:focus {
        border-color: #D52B1E;
        box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
        outline: none;
    }

.login-forgot-link {
    font-size: 0.9rem;
    color: #D52B1E;
    font-weight: 500;
    text-decoration: none;
}

    .login-forgot-link:hover {
        color: #cc5200;
    }

.login-btn {
    background: #D52B1E;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block; /* allows parent flex to center it */
    min-width: 150px; /* optional: consistent button size */
}
}

    .login-btn:hover {
        background: #cc5200;
        transform: translateY(-2px);
    }

.text-danger {
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .login-card {
        padding: 20px !important;
    }

    .login-header {
        font-size: 1.6rem;
    }
}
