

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg,#0f172a,#1e3a8a);
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.login-wrapper {
    min-height: 100vh;
}

.left-panel {
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-size: 48px;
    font-weight: 700;
}

.brand-subtitle {
    font-size: 18px;
    opacity: 0.8;
}

.glass-card {
    background: rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.form-control {
    height: 50px;
    border-radius: 12px;
    border: none;
    padding-left: 10px;
}

.input-group-text {
    border: none;
    background: white;
    border-radius: 12px 0 0 12px;
}

.btn-login {
    height: 50px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.login-subtitle {
    color: rgba(255,255,255,0.8);
}

.form-check-label {
    color: white;
}

.footer-text {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

@media(max-width:991px) {

    .left-panel {
        display: none;
    }

    body {
        overflow: auto;
    }
}

