/* === ASKER WOW DESIGN — Login page === */

/* ========================
   LOGIN PAGE
======================== */
.wow-login-page {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

/* Left branding panel */
.wow-login-left {
    background: linear-gradient(160deg, #2f6ca7 0%, #337ab7 60%, #3a8fce 100%);
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 36px;
    color: #fff;
    min-height: 100vh;
}
.wow-login-logo {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #fff;
    margin-bottom: 22px;
    border: 2px solid rgba(255,255,255,0.35);
    line-height: 80px;
    text-align: center;
}
.wow-login-left h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: 4px;
    color: #fff;
}
.wow-login-tagline {
    font-size: 15px;
    line-height: 1.65;
    text-align: center;
    margin-bottom: 6px;
    opacity: 0.95;
}
.wow-login-subtitle {
    font-size: 12px;
    opacity: 0.75;
    text-align: center;
    margin-bottom: 36px;
}
.wow-login-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 240px;
}
.wow-login-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.18);
    font-size: 13px;
    opacity: 0.88;
}
.wow-login-features li .glyphicon {
    font-size: 15px;
    width: 18px;
    text-align: center;
}

/* Right form panel */
.wow-login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 48px 56px;
    min-height: 100vh;
}
.wow-login-form-box {
    width: 100%;
    max-width: 380px;
}
.wow-login-form-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
}
.wow-login-form-subtitle {
    font-size: 13px;
    color: #999;
    margin-bottom: 30px;
}
.wow-login-form-box .input-group {
    margin-bottom: 16px;
}
.wow-login-form-box .input-group-addon {
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-right: none;
    color: #999;
    border-radius: 4px 0 0 4px;
}
.wow-login-form-box .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 0 4px 4px 0;
    box-shadow: none;
    height: 40px;
    font-size: 13px;
    color: #333;
}
.wow-login-form-box .form-control:focus {
    border-color: #337ab7;
    box-shadow: 0 0 0 2px rgba(51,122,183,0.12);
    outline: none;
}
.wow-login-form-box .checkbox label {
    color: #777;
    font-size: 13px;
    font-weight: normal;
    cursor: pointer;
}
.btn-wow-login {
    background: #337ab7;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 11px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    letter-spacing: 0.3px;
    transition: background 0.15s;
    margin-top: 6px;
    cursor: pointer;
    display: block;
}
.btn-wow-login:hover {
    background: #286090;
    color: #fff;
}
.btn-wow-login:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(51,122,183,0.25);
}

@media (max-width: 768px) {
    .wow-login-page { flex-direction: column; }
    .wow-login-left {
        flex: none;
        min-height: auto;
        padding: 30px 24px;
    }
    .wow-login-right {
        min-height: auto;
        padding: 30px 24px;
    }
}
