/*** Default login page ***/
.auth-wrapper {
    min-height: 100vh;
    display: flex;
}

.auth-brand-area {
    width: 52%;
    min-height: 100vh;
    padding: 55px 65px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    background: linear-gradient(135deg, #10172f 0%, #192246 45%, #182b62 100%);
}

.auth-form-area {
    width: 48%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f7f9fc;
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-icon {
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-content {
    max-width: 600px;
}

.brand-content h1 {
    font-size: 42px;
    line-height: 1.2;
}

.brand-content p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-box {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
}

.login-card {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    border: 1px solid #edf0f6;
    box-shadow: 0 15px 40px rgba(20, 34, 66, .07);
}

.password-wrapper {
    position: relative;
}

.password-wrapper .form-control {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #8c95a8;
}

.login-btn {
    width: 100%;
    height: 48px;
}

.system-status {
    margin-top: 18px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #edf0f4;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #28c76f;
}

.mobile-brand {
    display: none;
}

@media(max-width:991px) {
    .auth-brand-area {
        display: none;
    }

    .auth-form-area {
        width: 100%;
        padding: 25px;
    }

    .mobile-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }
}

@media(max-width:575px) {
    .login-card {
        padding: 24px 20px;
    }
}