body.login-body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg,#07111f,#0b2447);
    min-height: 100vh;
    position: relative;
}

#projector {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.login-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    width: 100%;
    max-width: 460px;
    padding: 3rem;
    border-radius: 28px;
    background: rgba(17, 25, 40, 0.75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    color: white;
    position: relative;
    overflow: hidden;
}

.login-brand {
    text-align: center;
    margin-bottom: 2.5rem;
}

.brand-logo {
    width: 180px;
    margin-bottom: 1rem;
}

.login-brand h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.login-brand p {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
}

.custom-input {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.08);
    color: white !important;
    height: 58px;
    border-radius: 14px;
}

.custom-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59,130,246,.15);
    background: rgba(255,255,255,0.08) !important;
}

.form-floating label {
    color: rgba(255,255,255,.6);
}

.login-btn {
    height: 56px;
    border: none;
    border-radius: 14px;
    background: linear-gradient( 135deg, #2563eb, #1d4ed8 );
    font-weight: 600;
    font-size: 1rem;
    transition: .25s ease;
    margin-left:0;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37,99,235,.35);
}

.text-danger {
    color: #fca5a5 !important;
}

.validation-summary-errors ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.validation-summary-errors {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 1rem;
}

.login-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient( 135deg, rgba(255,255,255,.18), rgba(255,255,255,.02) );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@media (max-width: 576px) {

    .login-wrapper {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .login-card {
        max-width: 100%;
        width: 100%;
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
    .brand-logo {
        width: 160px;
    }
    .login-brand h1 {
        font-size: 2rem;
    }
}