:root {

    --primary: #14b8a6;

    --primary-dark: #0f9f91;

    --primary-deep: #087f73;

    --primary-soft: #e7f8f5;

    --off-white: #f4f9f7;

    --white: #ffffff;

    --dark: #0f172a;

    --muted: #718096;

    --border: #e0e9e6;

}


* {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}


body {

    font-family: Inter, sans-serif;

    background:
        var(--off-white);

    color:
        var(--dark);

}


a {

    text-decoration: none;

}


/* HEADER */

.auth-header {

    padding:
        25px 30px;

}


.auth-header-inner {

    max-width:
        1200px;

    margin:
        auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

}


.brand {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

}


.brand-logo {

    width:
        58px;

    height:
        58px;

    overflow:
        hidden;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        17px;

    background:
        var(--primary);

    box-shadow:
        0 12px 30px
        rgba(20,184,166,.20);

}


.brand-logo img {

    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

}


.brand-name {

    font-size:
        24px;

    font-weight:
        900;

}


.brand-arewa {

    color:
        #10243c;

}


.brand-otp {

    color:
        var(--primary);

}


.header-login {

    padding:
        14px 24px;

    border-radius:
        15px;

    color:
        var(--primary-deep);

    background:
        var(--primary-soft);

    font-size:
        13px;

    font-weight:
        800;

    transition:
        .25s;

}


.header-login:hover {

    color:
        white;

    background:
        var(--primary);

    transform:
        translateY(-2px);

}


/* MAIN */

.auth-main {

    display:
        flex;

    justify-content:
        center;

    padding:
        35px 15px 70px;

}


.auth-card {

    position:
        relative;

    width:
        100%;

    max-width:
        650px;

    padding:
        55px 45px 40px;

    border-radius:
        35px;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 25px 70px
        rgba(15,23,42,.08);

    animation:
        enter .6s ease;

}


@keyframes enter {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.card-accent {

    position:
        absolute;

    top: 0;

    left: 50%;

    transform:
        translateX(-50%);

    width:
        175px;

    height:
        8px;

    border-radius:
        0 0 20px 20px;

    background:
        linear-gradient(
            90deg,
            #0f9f91,
            #4dd8c8
        );

}


/* ICON */

.auth-icon {

    width:
        95px;

    height:
        95px;

    margin:
        0 auto 25px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        28px;

    color:
        var(--primary);

    background:
        var(--primary-soft);

    font-size:
        36px;

    box-shadow:
        0 12px 30px
        rgba(20,184,166,.10);

    animation:
        float 3s ease-in-out infinite;

}


@keyframes float {

    50% {

        transform:
            translateY(-5px);

    }

}


/* HEADING */

.auth-heading {

    text-align:
        center;

    margin-bottom:
        32px;

}


.auth-heading h1 {

    font-size:
        clamp(30px,5vw,41px);

    font-weight:
        900;

    letter-spacing:
        -1.8px;

}


.auth-heading p {

    margin:
        14px auto 0;

    max-width:
        510px;

    color:
        var(--muted);

    font-size:
        14px;

    line-height:
        1.8;

}


/* PROGRESS */

.setup-progress {

    margin-bottom:
        32px;

}


.progress-header {

    display:
        flex;

    justify-content:
        space-between;

    margin-bottom:
        9px;

}


.progress-header span {

    color:
        var(--muted);

    font-size:
        13px;

    font-weight:
        700;

}


.progress-header strong {

    color:
        var(--primary-deep);

    font-size:
        13px;

}


.progress-track {

    height:
        8px;

    overflow:
        hidden;

    border-radius:
        50px;

    background:
        #e6efed;

}


.progress-bar {

    width:
        0;

    height:
        100%;

    border-radius:
        inherit;

    background:
        linear-gradient(
            90deg,
            #0f9f91,
            #4dd8c8
        );

    transition:
        width .35s ease;

}


/* FORM */

.form-group {

    margin-bottom:
        22px;

}


.form-group label {

    display:
        block;

    margin-bottom:
        9px;

    color:
        var(--dark);

    font-size:
        13px;

    font-weight:
        800;

}


.form-group label span {

    color:
        var(--primary);

}


.form-group label .optional {

    color:
        #9aa7b6;

    font-size:
        10px;

    margin-left:
        5px;

}


.input-wrapper {

    position:
        relative;

}


.input-wrapper > i {

    position:
        absolute;

    left:
        19px;

    top:
        50%;

    transform:
        translateY(-50%);

    color:
        #98a7b7;

    pointer-events:
        none;

}


.input-wrapper input {

    width:
        100%;

    height:
        64px;

    padding:
        0 52px;

    border:
        1.5px solid
        var(--border);

    border-radius:
        19px;

    outline:
        none;

    color:
        var(--dark);

    background:
        #fbfdfc;

    font-family:
        inherit;

    font-size:
        13px;

    font-weight:
        600;

    transition:
        .25s;

}


.input-wrapper input:focus {

    border-color:
        var(--primary);

    background:
        white;

    box-shadow:
        0 0 0 4px
        rgba(20,184,166,.10);

}


.form-group > small {

    display:
        block;

    margin-top:
        7px;

    color:
        #9aa7b6;

    font-size:
        10px;

}


/* PASSWORD */

.password-toggle {

    position:
        absolute;

    right:
        12px;

    top:
        50%;

    transform:
        translateY(-50%);

    width:
        40px;

    height:
        40px;

    border:
        0;

    border-radius:
        12px;

    color:
        #8795a4;

    background:
        transparent;

    cursor:
        pointer;

}


.password-toggle:hover {

    color:
        var(--primary);

    background:
        var(--primary-soft);

}


.password-strength {

    margin-top:
        9px;

}


.strength-bars {

    display:
        flex;

    gap:
        5px;

    margin-bottom:
        5px;

}


.strength-bars span {

    height:
        4px;

    flex:
        1;

    border-radius:
        20px;

    background:
        #e5edeb;

    transition:
        .25s;

}


/* TERMS */

.terms-box {

    margin:
        5px 0 24px;

}


.checkbox-label {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        10px;

    color:
        var(--muted);

    font-size:
        11px;

    line-height:
        1.6;

    cursor:
        pointer;

}


.checkbox-label input {

    position:
        absolute;

    opacity:
        0;

}


.custom-checkbox {

    width:
        19px;

    height:
        19px;

    flex-shrink:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1.5px solid
        #d4dfdc;

    border-radius:
        6px;

    background:
        white;

}


.custom-checkbox i {

    opacity:
        0;

    color:
        white;

    font-size:
        9px;

}


.checkbox-label input:checked +
.custom-checkbox {

    background:
        var(--primary);

    border-color:
        var(--primary);

}


.checkbox-label input:checked +
.custom-checkbox i {

    opacity:
        1;

}


.terms-text a {

    color:
        var(--primary-deep);

    font-weight:
        800;

}


/* BUTTON */

.auth-submit {

    width:
        100%;

    height:
        63px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    border:
        0;

    border-radius:
        18px;

    color:
        white;

    background:
        linear-gradient(
            135deg,
            #087f73,
            #14b8a6
        );

    font-family:
        inherit;

    font-size:
        14px;

    font-weight:
        800;

    cursor:
        pointer;

    box-shadow:
        0 15px 30px
        rgba(20,184,166,.20);

    transition:
        .25s;

}


.auth-submit:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 20px 35px
        rgba(20,184,166,.27);

}


.auth-submit.loading {

    opacity:
        .75;

    pointer-events:
        none;

}


.auth-submit.loading i {

    animation:
        spin .8s linear infinite;

}


@keyframes spin {

    to {
        transform:
            rotate(360deg);
    }

}


/* ALERT */

.auth-alert {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    margin-bottom:
        20px;

    padding:
        14px;

    border-radius:
        13px;

    color:
        #a72a38;

    background:
        #fff0f2;

    border:
        1px solid
        #ffd7dd;

    font-size:
        11px;

    font-weight:
        700;

}


/* SWITCH */

.auth-switch {

    display:
        flex;

    justify-content:
        center;

    gap:
        5px;

    margin-top:
        25px;

    color:
        var(--muted);

    font-size:
        11px;

}


.auth-switch a {

    color:
        var(--primary-deep);

    font-weight:
        800;

}


/* MOBILE */

@media(max-width:650px) {

    .auth-header {

        padding:
            18px;

    }


    .auth-header-inner {

        width:
            100%;

    }


    .brand-logo {

        width:
            50px;

        height:
            50px;

        border-radius:
            15px;

    }


    .brand-name {

        font-size:
            21px;

    }


    .header-login {

        padding:
            12px 18px;

    }


    .auth-main {

        padding:
            20px 13px 60px;

    }


    .auth-card {

        padding:
            48px 20px 32px;

        border-radius:
            28px;

    }


    .auth-heading h1 {

        font-size:
            30px;

    }


    .auth-heading p {

        font-size:
            13px;

    }


    .auth-icon {

        width:
            83px;

        height:
            83px;

    }

}


@media(max-width:380px) {

    .brand-name {

        display:
            none;

    }

}
:root {

    --primary: #14b8a6;

    --primary-dark: #0f9f91;

    --primary-deep: #087f73;

    --primary-soft: #e7f8f5;

    --off-white: #f5f9f8;

    --white: #ffffff;

    --dark: #0f172a;

    --text: #172033;

    --muted: #718096;

    --light-text: #9aa7b6;

    --border: #e1e9e7;

    --danger: #dc3545;

    --success: #0f9f91;

    --shadow:
        0 25px 70px
        rgba(15, 23, 42, .08);
}


* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        'Inter',
        sans-serif;

    color: var(--text);

    background:
        var(--off-white);

}


a {

    text-decoration: none;

    color: inherit;

}


/* =====================================================
   PAGE
===================================================== */

.auth-page {

    min-height: 100vh;

    overflow-x: hidden;

}


/* =====================================================
   BACKGROUND
===================================================== */

.auth-bg {

    position: fixed;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: -1;

}


.bg-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

}


.bg-shape-one {

    width: 520px;

    height: 520px;

    top: -250px;

    left: -160px;

    background:
        rgba(20,184,166,.13);
}


.bg-shape-two {

    width: 400px;

    height: 400px;

    right: -180px;

    top: 160px;

    background:
        rgba(20,184,166,.08);
}


.bg-shape-three {

    width: 350px;

    height: 350px;

    bottom: -200px;

    left: 25%;

    background:
        rgba(20,184,166,.07);
}


/* =====================================================
   HEADER
===================================================== */

.auth-header {

    position: relative;

    width: 100%;

    padding:
        25px 30px;

    z-index: 20;

}


.auth-header-inner {

    max-width: 1250px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    align-items: center;

    gap: 13px;

}


.brand-logo {

    width: 57px;

    height: 57px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 17px;

    background:
        var(--primary);

    box-shadow:
        0 12px 30px
        rgba(20,184,166,.20);

    overflow: hidden;

}


.brand-logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


.brand-name {

    font-size: 24px;

    font-weight: 900;

    letter-spacing: -1px;

}


.brand-arewa {

    color: #0f2740;

}


.brand-otp {

    color: var(--primary);

}


.header-login {

    padding:
        14px 25px;

    border-radius: 15px;

    background:
        var(--primary-soft);

    color:
        var(--primary-deep);

    font-size: 14px;

    font-weight: 800;

    transition:
        .25s ease;

}


.header-login:hover {

    transform:
        translateY(-2px);

    background:
        var(--primary);

    color:
        white;

    box-shadow:
        0 10px 25px
        rgba(20,184,166,.18);

}


/* =====================================================
   MAIN
===================================================== */

.auth-main {

    width: 100%;

    display: flex;

    justify-content: center;

    padding:
        45px 20px 80px;

}


.auth-card {

    width: 100%;

    max-width: 650px;

    position: relative;

    padding:
        55px 45px 42px;

    background:
        rgba(255,255,255,.94);

    border:
        1px solid
        rgba(255,255,255,.8);

    border-radius: 38px;

    box-shadow:
        var(--shadow);

    backdrop-filter:
        blur(20px);

    animation:
        cardEnter .65s ease both;

}


@keyframes cardEnter {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =====================================================
   ACCENT
===================================================== */

.card-accent {

    position: absolute;

    top: 0;

    left: 50%;

    transform:
        translateX(-50%);

    width: 175px;

    height: 8px;

    border-radius:
        0 0 20px 20px;

    background:
        linear-gradient(
            90deg,
            var(--primary-dark),
            #46d6c5
        );

}


/* =====================================================
   ICON
===================================================== */

.auth-icon {

    width: 100px;

    height: 100px;

    margin:
        0 auto 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 30px;

    color:
        var(--primary);

    background:
        var(--primary-soft);

    border:
        1px solid
        rgba(20,184,166,.12);

    box-shadow:
        0 12px 35px
        rgba(20,184,166,.10);

    font-size: 38px;

    animation:
        iconFloat 3s ease-in-out infinite;

}


@keyframes iconFloat {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-5px);

    }

}


/* =====================================================
   HEADING
===================================================== */

.auth-heading {

    text-align: center;

    margin-bottom: 35px;

}


.auth-heading h1 {

    color:
        var(--dark);

    font-size:
        clamp(30px, 5vw, 42px);

    line-height: 1.1;

    letter-spacing:
        -1.7px;

    font-weight: 900;

}


.auth-heading p {

    max-width: 510px;

    margin:
        15px auto 0;

    color:
        var(--muted);

    font-size: 15px;

    line-height: 1.8;

}


/* =====================================================
   PROGRESS
===================================================== */

.setup-progress {

    margin-bottom: 35px;

}


.progress-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 10px;

}


.progress-header span {

    color:
        var(--muted);

    font-size: 13px;

    font-weight: 700;

}


.progress-header strong {

    color:
        var(--primary-deep);

    font-size: 14px;

}


.progress-track {

    height: 9px;

    overflow: hidden;

    border-radius: 50px;

    background:
        #e7efed;

}


.progress-bar {

    width: 0%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--primary-deep),
            #3dd5c5
        );

    transition:
        width .4s ease;

}


/* =====================================================
   ALERT
===================================================== */

.auth-alert {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    padding: 14px 16px;

    border-radius: 14px;

    font-size: 12px;

    font-weight: 700;

}


.auth-alert.error {

    color:
        #a72a38;

    background:
        #fff0f2;

    border:
        1px solid #ffd8dd;

}


/* =====================================================
   FORM
===================================================== */

.form-group {

    margin-bottom: 23px;

}


.form-group label,
.label-row label {

    display: block;

    margin-bottom: 10px;

    color:
        var(--dark);

    font-size: 14px;

    font-weight: 800;

}


.form-group label span,
.label-row label span {

    color:
        var(--primary);

}


.label-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.label-row a {

    color:
        var(--primary-deep);

    font-size: 11px;

    font-weight: 700;

}


.input-wrapper {

    position: relative;

}


.input-wrapper > i {

    position: absolute;

    left: 19px;

    top: 50%;

    transform:
        translateY(-50%);

    color:
        #98a7b7;

    font-size: 17px;

    pointer-events: none;

}


.input-wrapper input {

    width: 100%;

    height: 67px;

    padding:
        0 52px;

    border:
        1.5px solid
        var(--border);

    border-radius: 21px;

    outline: none;

    background:
        #fbfdfc;

    color:
        var(--dark);

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    transition:
        .25s ease;

}


.input-wrapper input::placeholder {

    color:
        #aeb9c4;

    font-weight: 500;

}


.input-wrapper input:focus {

    background:
        white;

    border-color:
        var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(20,184,166,.10);

}


.form-group > small {

    display: block;

    margin-top: 8px;

    color:
        #9aa8b5;

    font-size: 11px;

    line-height: 1.5;

}


/* =====================================================
   PASSWORD TOGGLE
===================================================== */

.password-toggle {

    position: absolute;

    right: 17px;

    top: 50%;

    transform:
        translateY(-50%);

    width: 38px;

    height: 38px;

    border: 0;

    border-radius: 12px;

    color:
        #8795a4;

    background:
        transparent;

    cursor: pointer;

}


.password-toggle:hover {

    color:
        var(--primary);

    background:
        var(--primary-soft);

}


/* =====================================================
   PASSWORD STRENGTH
===================================================== */

.password-strength {

    margin-top: 9px;

}


.strength-bars {

    display: flex;

    gap: 5px;

    margin-bottom: 6px;

}


.strength-bars span {

    height: 4px;

    flex: 1;

    border-radius: 10px;

    background:
        #e6eeec;

    transition:
        .25s ease;

}


.password-strength small {

    color:
        #9aa8b5;

    font-size: 10px;

}


/* =====================================================
   TERMS
===================================================== */

.terms-box {

    margin:
        5px 0 24px;

}


.checkbox-label,
.remember-label {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    cursor: pointer;

    color:
        var(--muted);

    font-size: 11px;

    line-height: 1.6;

}


.checkbox-label input,
.remember-label input {

    position: absolute;

    opacity: 0;

}


.custom-checkbox {

    width: 19px;

    height: 19px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1.5px solid
        #d5dfdd;

    border-radius: 6px;

    background:
        white;

    color:
        white;

    transition:
        .2s ease;

}


.checkbox-label input:checked + .custom-checkbox,
.remember-label input:checked + .custom-checkbox {

    background:
        var(--primary);

    border-color:
        var(--primary);

}


.custom-checkbox i {

    opacity: 0;

    font-size: 9px;

}


.checkbox-label input:checked + .custom-checkbox i,
.remember-label input:checked + .custom-checkbox i {

    opacity: 1;

}


.terms-text a {

    color:
        var(--primary-deep);

    font-weight: 700;

}


/* =====================================================
   SUBMIT
===================================================== */

.auth-submit {

    width: 100%;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border: 0;

    border-radius: 19px;

    color:
        white;

    background:
        linear-gradient(
            135deg,
            var(--primary-deep),
            var(--primary)
        );

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 15px 30px
        rgba(20,184,166,.20);

    transition:
        .25s ease;

}


.auth-submit:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 35px
        rgba(20,184,166,.28);

}


.auth-submit:active {

    transform:
        scale(.98);

}


.auth-submit.loading {

    pointer-events: none;

    opacity: .8;

}


.auth-submit.loading i {

    animation:
        spin .8s linear infinite;

}


@keyframes spin {

    to {

        transform:
            rotate(360deg);

    }

}


/* =====================================================
   SWITCH
===================================================== */

.auth-switch {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 6px;

    margin-top: 27px;

    color:
        var(--muted);

    font-size: 12px;

}


.auth-switch a {

    color:
        var(--primary-deep);

    font-weight: 800;

}


/* =====================================================
   REMEMBER
===================================================== */

.remember-label {

    align-items: center;

    margin:
        -3px 0 25px;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .auth-header {

        padding:
            18px 18px;

    }


    .brand-logo {

        width: 50px;

        height: 50px;

        border-radius: 15px;

    }


    .brand-name {

        font-size: 21px;

    }


    .header-login {

        padding:
            12px 18px;

        border-radius:
            13px;

    }


    .auth-main {

        padding:
            25px 14px 60px;

    }


    .auth-card {

        padding:
            48px 22px 32px;

        border-radius:
            29px;

    }


    .auth-heading h1 {

        font-size:
            31px;

    }


    .auth-heading p {

        font-size:
            13px;

        line-height:
            1.7;

    }


    .auth-icon {

        width: 84px;

        height: 84px;

        border-radius: 25px;

        font-size: 32px;

    }


    .input-wrapper input {

        height: 62px;

        border-radius: 18px;

    }

}


@media (max-width: 380px) {

    .brand-name {

        display: none;

    }


    .auth-card {

        padding-left:
            18px;

        padding-right:
            18px;

    }

}