/*
 * Login - Digital Sistema
 */

.login-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 20%, rgba(190, 45, 55, 0.08), transparent 28%),
        radial-gradient(circle at 85% 80%, rgba(190, 45, 55, 0.05), transparent 30%),
        #f4f5f7;
    background-repeat: no-repeat;
    background-size: cover;
    color: #2d2d2d;
}

.navbar-system {
    min-height: 72px;
    background: #ffffff !important;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08) !important;
    padding: 0;
}

.name-app-topo {
    width: 100% !important;
    min-height: 72px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #b82f3b !important;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-size: 20px;
    margin: 0 !important;
}

.login-brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.login-page .content {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: flex-start;
    padding-top: 48px;
    padding-bottom: 48px;
}

.login-page .container-fluid {
    width: 100%;
}

.login-page .card {
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(0,0,0,0.12);
    overflow: hidden;
}

.login-page .card-header {
    background: transparent !important;
    box-shadow: none !important;
    padding: 24px 28px 8px 28px;
    text-align: center;
}

.login-card-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
}

.login-card-logo {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(184,47,59,0.18);
    margin-bottom: 10px;
}

.login-card-brand-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #b82f3b;
}

.login-page .card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #272727;
}

.login-page .card-category {
    font-size: 15px;
    color: #8b8b8b;
    margin-bottom: 0;
}

.login-page .card-body {
    padding: 20px 30px 26px 30px;
}

.login-page .form-group {
    margin-bottom: 24px;
}

.labelFormLogin {
    font-size: 15px !important;
    color: #707070 !important;
}

.login-page .form-control {
    font-size: 16px;
    padding: 10px 4px;
}

.login-page .form-control:focus {
    border-color: #b82f3b !important;
    box-shadow: none !important;
}

.login-page a {
    color: #a82935;
    font-weight: 500;
}

.login-page a:hover {
    color: #7e1f28;
}

.btn-entrar {
    min-height: 46px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #c63b47, #a72531) !important;
    border: 0 !important;
    box-shadow: 0 8px 18px rgba(184,47,59,0.22) !important;
}

.btn-entrar:hover,
.btn-entrar:focus,
.btn-entrar:active {
    background: linear-gradient(135deg, #ad2e39, #8f1f29) !important;
    box-shadow: 0 10px 22px rgba(184,47,59,0.30) !important;
}

.loginAreaMsgAPI {
    text-align: center;
    margin-bottom: 10px !important;
}

.loginLabelMsgAPI {
    font-size: 14px;
    color: #d00000;
    font-weight: 600;
}

.area-notaccount {
    text-align: center;
    margin-top: 18px;
}

.area-notaccount label {
    color: #8a8a8a;
    font-size: 13px;
}

#login-company {
    display: block;
    text-align: center;
    color: #9a9a9a;
    font-size: 12px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .name-app-topo {
        font-size: 17px;
    }

    .login-page .content {
        padding-top: 24px;
    }

    .login-page .card {
        margin-left: 10px;
        margin-right: 10px;
    }

    .login-page .card-body {
        padding: 20px;
    }
}