.login-wrapper {
    min-height: 400px;
    display: flex;
    justify-content: center;
    padding-top: 30px;
}
.login-card {
    width: 100%;
    max-width: 550px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}

.login-title {
    font-size: 18pt;
    font-weight: bold;
    margin-bottom: 15px;
}

.login-subtitle {
    font-size: 13pt;
    color: #444;
    margin-bottom: 15px;
}

.login-input {
    height: 70px;
    background: #f4f0c5;
    border: 1px solid #ddd;
    font-size: 1.2rem;
    padding-left: 18px;
}

    .login-input:focus {
        background: #f4f0c5;
        border-color: #86b7fe;
        box-shadow: none;
    }

.login-btn {
    width: 100%;
    height: 60px;
    font-size: 1.7rem;
    font-weight: 400;
    border-radius: 6px;
}

.form-check-label {
    font-size: 1.2rem;
}

/* Login page uses the shared layout, but admin chrome is hidden until authentication succeeds. */
.aio-anonymous {
    margin-bottom: 0;
    background: #f5f7fb;
}

.aio-anonymous .admin-content {
    min-height: 100vh;
}

.aio-anonymous .login-wrapper {
    min-height: 100vh;
    padding-top: 48px;
    padding-bottom: 48px;
}
