﻿
.login-page-demo {
    width: 100%;
    margin: 0;
    padding: 32px 16px 44px;
    display: flex;
    justify-content: center;
}

.login-page-shell {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.login-split-row {
    min-height: 560px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
}

.login-panel {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.login-panel-left {
    background: #e5e7eb;
}

.login-panel-right {
    background: #f5f5f7;
}

.login-panel-content {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.login-icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 14px;
}

.login-title {
    font-size: 2.3rem;
    line-height: 1.1;
    font-weight: 500;
    color: #002b5c;
    margin-bottom: 28px;
}

.login-input {
    height: 46px;
    border: 0;
    border-radius: 4px;
    background: #f6efb5;
    box-shadow: none;
}

    .login-input:focus {
        background: #f6efb5;
        box-shadow: none;
        border: 0;
    }

.login-eye {
    position: absolute;
    right: 14px;
    top: 14px;
    color: #666;
    cursor: pointer;
}

.login-link {
    font-size: 13px;
    color: #003f88;
    text-decoration: none;
}

    .login-link:hover {
        text-decoration: underline;
    }

.login-btn-main {
    min-width: 180px;
    height: 42px;
    background: #dc2626;
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-weight: 600;
}

    .login-btn-main:hover {
        background: #b91c1c;
        color: #fff;
    }

.login-benefits {
    padding-left: 20px;
    margin-bottom: 36px;
    color: #002b5c;
    font-size: 15px;
}

    .login-benefits li {
        margin-bottom: 10px;
        line-height: 1.35;
    }

.login-btn-outline {
    min-width: 220px;
    padding: 12px 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dc2626;
    color: #dc2626;
    background: #fff;
    font-weight: 700;
    text-decoration: none;
}

    .login-btn-outline:hover {
        background: #dc2626;
        color: #fff;
    }

@media (max-width: 991.98px) {
    .login-page-demo {
        padding: 18px 12px 32px;
    }

    .login-panel {
        min-height: auto;
        padding: 35px 20px;
    }

    .login-split-row {
        min-height: auto;
    }

    .login-panel-content {
        max-width: 100%;
    }

    .login-title {
        font-size: 2.3rem;
        line-height: 1.1;
        font-weight: 500;
        color: #7f1d1d;
        margin-bottom: 28px;
    }
}

/* Overrides azules */
.login-icon-circle {
    background: #2584ea;
}

.login-btn-main {
    background: #0572d8;
}

.login-btn-main:hover {
    background: #53b9ff;
    color: #fff;
}

.login-btn-outline {
    border-color: #0572d8;
    color: #0572d8;
}

.login-btn-outline:hover {
    background: #dff1ff;
    color: #0572d8;
}

@media (max-width: 991.98px) {
    .login-title {
        color: #002b5c;
    }
}


