:root {
    --halo-navy: #23296D;
    --halo-cyan: #22C7E5;
    --halo-cyan-hover: #19b2cc;
    --halo-light: #F5F8FC;
    --halo-border: #D7DEE8;
    --halo-success: #53D19A;
}

.flex_di {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 15px;
}

.row.text-dark p {
    margin-bottom: 0px !important;
}

.login_div .form-check {
    display: flex;
    align-items: center;
    gap: 5px;
}

input.form-check-input {
    padding: 0px !important;
}

.form-check label.form-check-label.fw-semibold {
    line-height: normal !important;
    font-size: 15px;
    position: relative;
    top: 2px;
}

body {
    background-color: var(--halo-light);
    color: #333333;
    overflow-x: hidden;
}

.container {
    max-width: 1170px !important;
}

.text-halo-navy {
    color: var(--halo-navy);
}

.text-halo-cyan {
    color: var(--halo-cyan);
    font-size: 45px;
}

/* HEADER */
.site-header {
    height: 90px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 2.5rem;
    letter-spacing: 1px;
}

/* HERO & STATS */
.hero-title {
    font-size: 45px;
    line-height: 1.1;
    padding-top: 115px;
}

.stat-card {
    background-color: #ffffff;
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* LOGIN CARD */
.login-card {
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.10);
    border: none;
}

.login-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.login-logo img {
    width: 100%;
}

.form-control-custom {
    padding: 15px;
    border: 1px solid var(--halo-border);
    border-radius: 12px;
    font-size: 15px;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--halo-cyan);
    box-shadow: none;
}

.password-wrapper {
    position: relative;
}

.show-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

.btn-login {
    width: 100%;
    background-color: var(--halo-cyan);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

.btn-login:hover {
    background-color: var(--halo-cyan-hover);
    color: #ffffff;
}

.btn-login[disabled] {
    opacity: .65;
    cursor: not-allowed;
}

.btn-create {
    width: 100%;
    background-color: var(--halo-light);
    border: 1px solid var(--halo-border);
    color: var(--halo-navy);
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

.btn-create:hover {
    background-color: #e9eff7;
}

/* 2FA SECTION */
.two-factor-card {
    background-color: #F8FAFD;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: opacity .2s ease;
}

.two-factor-card.locked {
    opacity: .55;
    pointer-events: none;
}

.two-factor-card.locked::after {
    content: "Enter your email & password above first";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--halo-navy);
    background: rgba(255, 255, 255, .55);
    border-radius: 15px;
}

.otp-status-msg {
    font-size: 13px;
    font-weight: 600;
    margin-top: -4px;
    margin-bottom: 10px;
    display: none;
}

.otp-status-msg.success {
    color: var(--halo-success);
}

.otp-status-msg.error {
    color: #dc3545;
}

.btn-verify {
    background-color: var(--halo-success);
    color: #ffffff;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-verify:hover {
    background-color: #42be87;
    color: #ffffff;
}

.btn-verify[disabled] {
    opacity: .6;
    cursor: not-allowed;
}

/* MEDIA QUERIES */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
input,
button {
    font-family: "Montserrat", sans-serif !important;
}

.invalid-feedback {
    margin-top: 10px;
    color: red;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500;
}

.main-header-three__top-wrapper.header_secs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
        width: 1220px;
    margin: auto;
}

.header_logo a img {
    width: 20%;
}

.main-header-three__top {
    background-color: #efefef;
}

footer.site-footer.site-footer-two {
    display: none;
}

nav.main-menu.main-menu-three {
    display: none;
}

header.main-header-three {
    position: relative;
}