﻿/* Page */
.page-bg {
    min-height: 100vh;
    background: #f7f9fc;
}

/* Card */
.login-card {
    width: 420px;
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(20, 40, 100, .12);
}

/* Header */
.login-hero {
    display: grid;
    place-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
}

.lock-badge {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #e9f0ff;
    display: grid;
    place-items: center;
}

.login-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.login-subtitle {
    font-size: 14px;
    color: #64748b;
}

/* Inputs */
.form-label {
    font-weight: 600;
    color: #0f172a;
}

.form-control {
    padding: .75rem .875rem;
    border-radius: 10px;
}

.input-icon-wrapper {
    position: relative;
}

/* left icons (email + lock) */
.input-icon-wrapper i.bx-envelope,
.input-icon-wrapper i.bx-lock {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #888;
}

    /* right toggle eye */
    .input-icon-wrapper .toggle-password {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.1rem;
        cursor: pointer;
        color: #888;
        opacity: .8;
    }

    /* adjust input spacing for icons */
    .input-icon-wrapper .form-control-sm {
        padding-left: 32px; /* space for left icon */
        padding-right: 36px; /* space for right icon */
    }

/* Actions */
.btn-primary {
    background: #273b88;
    border-color: #273b88;
    border-radius: 10px;
    padding: .7rem 1rem;
    font-weight: 600;
}

    .btn-primary:hover {
        background: #1f2f6c;
        border-color: #1f2f6c;
    }

/* Footer helpers */
.helper-link {
    font-size: 13px;
}

    .helper-link:hover {
        text-decoration: underline;
    }

/* Compliance panel */
.compliance-card {
    width: 420px;
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(16, 24, 40, .08);
}

.compliance-title {
    font-weight: 700;
}

.bullet {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
    margin-right: 8px;
    background: #22c55e;
}


