:root {
    --cliente-dorado: #d6a820;
    --cliente-dorado-hover: #bd8e0d;
    --cliente-dorado-claro: #f0c740;
    --texto-principal: #35383d;
    --borde: #d8dde3;
    --fondo: #ffffff;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background: var(--fondo);
    color: var(--texto-principal);
}

.login-main {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    padding: 32px 0 18px;
}

.login-container {
    max-width: 1140px;
}

.login-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 28px;
}

.login-logo-axia {
    display: block;
    width: 250px;
    max-width: 78%;
    height: auto;
}

.login-divider {
    height: 1px;
    background: var(--borde);
    margin-bottom: 32px;
}

.login-content {
    min-height: 325px;
}

.login-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4px 12px;
}

.cliente-logo-container {
    min-height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.cliente-logo {
    width: 225px;
    max-width: 72%;
    height: auto;
}

.form-control {
    border-color: #cbd3dc;
    font-size: 1rem;
    min-height: 48px;
}

.form-control:focus {
    border-color: var(--cliente-dorado);
    box-shadow: 0 0 0 0.22rem rgba(214, 168, 32, 0.20);
}

.btn-login {
    min-height: 48px;
    border: 1px solid var(--cliente-dorado);
    background: var(--cliente-dorado);
    color: #292929;
    font-weight: 600;
}

.btn-login:hover,
.btn-login:focus {
    border-color: var(--cliente-dorado-hover);
    background: var(--cliente-dorado-hover);
    color: #ffffff;
}

.banner-container {
    overflow: hidden;
    border-radius: 7px;
    background: #f2f3f5;
}

.login-banner {
    width: 100%;
    height: 100%;
    min-height: 325px;
    object-fit: cover;
    display: block;
}

.login-footer {
    min-height: 64px;
    border-top: 1px solid #e1e4e8;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.78;
}

.login-logo-aktivo {
    width: 125px;
    height: auto;
}

.alert {
    font-size: 0.94rem;
}

@media (max-width: 991.98px) {
    .login-main {
        align-items: flex-start;
        padding-top: 24px;
    }

    .login-header {
        padding-bottom: 20px;
    }

    .login-divider {
        margin-bottom: 24px;
    }

    .login-panel {
        padding: 0;
    }

    .banner-container {
        max-height: 280px;
    }

    .login-banner {
        min-height: 260px;
    }
}

@media (max-width: 575.98px) {
    .login-main {
        min-height: auto;
        padding: 18px 0 24px;
    }

    .login-logo-axia {
        width: 215px;
    }

    .cliente-logo-container {
        min-height: auto;
        margin-bottom: 18px;
    }

    .cliente-logo {
        width: 190px;
    }

    .banner-container {
        display: none;
    }
}
