body {
    background-color: #f4f7fc;
    min-height: 100vh;
    margin: 0;
}

/* Layout 60% (esquerda) / 40% (direita) */
.login-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.left-side {
    flex: 0 0 60%;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
}

.left-side .brand {
    max-width: 720px;
}

.right-side {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
}

.login-container {
    max-width: 420px;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 10px;
}

.form-control {
    height: 50px;
    border-width: 2px;
    /* borda mais grossa */
    background-color: rgba(255, 255, 255, 0.9);
}

/* Foco com borda azul */
.form-control:focus,
.form-control:focus-visible {
    outline: none;
    box-shadow: none;
    border-color: #0d6efd;
    /* azul do Bootstrap */
    border-width: 2px;
    /* mantém espessura no foco */
}
.form-control.is-invalid:focus {
    outline: none;
    box-shadow: none;
}

/* Responsivo: empilhar em telas menores */
@media (max-width: 992px) {
    .login-layout {
        flex-direction: column;
    }

    .left-side {
        display: none;
        /* Oculta a coluna esquerda em mobile */
    }

    .right-side {
        flex: 0 0 auto;
        width: 100%;
        min-height: 100vh;
        padding: 24px 16px;
        background-color: #f4f7fc;
        /* Mantém o background padrão */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-header {
        color: #333;
        /* Cor escura para texto em fundo claro */
    }

    .login-container {
        max-width: 360px;
        margin: 0 auto;
    }
}

.password-wrapper {
   position: relative;
}
.password-eye {
   position: absolute;
   right: 14px;
   top: 11px;
}
.password-eye {
   cursor: pointer;
   color:#0d6efd;
}
.password-eye:before {
   font-family: FontAwesome;
   content: "\f204";
   font-style: normal;
   font-weight: 400;
   font-variant: normal;
   vertical-align: middle;
   line-height: 1.2;
   font-size: 22px;
}
.show-password .password-eye:before {
   content: "\f205";
}

.form-control.is-invalid, .form-select.is-invalid {
    background-image: none !important;
    padding-right: 0.75rem !important;
}