    html, body {
        height: 100vh;
        margin: 0;
        font-family: 'Raleway', sans-serif;
        color: #fff;
    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: url('/img/landing.jpg') no-repeat center center fixed !important;
        background-size: cover;
        z-index: -2;
    }

    body::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(30, 60, 114, 0.45);
        z-index: -1;
    }

    .login-container {
        background: rgba(255, 255, 255, 0.95);
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        max-width: 400px;
        width: 90%;
        color: #333;
    }

    .login-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .login-title {
        text-align: center;
        margin-bottom: 25px;
        font-size: 28px;
        font-weight: bold;
        color: #2a5298;
    }

    .form-group label {
        font-weight: 600;
    }

    .form-control {
        border-radius: 6px;
    }

    .btn-primary {
        width: 100%;
        padding: 10px;
        font-weight: bold;
        background: #2a5298;
        border: none;
        border-radius: 30px;
    }

    .btn-primary:hover {
        background: #1e3c72;
    }

    .help-block {
        color: #e74c3c;
        font-size: 0.9em;
    }