/* OneVeredict — login (fundo com wallpaper + card central). Sem dependências externas. */

html:has(.login-page),
html:has(.login-page) body {
    height: 100%;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.login-page {
    box-sizing: border-box;
    min-height: 100dvh;
    height: 100dvh;
    overflow: hidden;
    background-color: #0b1b34;
    background-image:
        linear-gradient(rgba(6, 15, 30, 0.35), rgba(6, 15, 30, 0.55)),
        url("../images/login-wallpaper.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.login-page-wrap {
    box-sizing: border-box;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.login-page .myform {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(440px, 92vw);
    padding: 2rem 1.75rem 1.75rem;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.1rem;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
    color: #212529;
}

.login-page .auth-login-logo {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background: #eaf1fb;
    color: #1b6ec2;
    font-size: 2.4rem;
}

.login-page .auth-login-title {
    font-size: 1.9rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    margin: 0;
    color: #12294a;
}

.login-page .auth-login-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.login-page .tx-tfm {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.login-page .mybtn {
    border-radius: 50px;
    padding: 0.65rem 1rem;
}

.login-page .input-group-text {
    background-color: #f1f4f8;
    color: #495057;
    border-right: 0;
}

.login-page .form-control {
    font-size: 1rem;
    min-height: calc(2.5rem + 2px);
}

.login-page .validation-message,
.login-page .text-danger {
    font-size: 0.875rem;
}

.login-page a {
    text-decoration: none;
}
