:root{
    --evci-primary:#283d4e;
    --evci-gold:#dbc164;
    --evci-text:#17202a;
    --evci-muted:#6b7280;
    --evci-border:#e5e7eb;
    --evci-white:#ffffff;
    --evci-danger:#b91c1c;
    --evci-shadow:0 18px 50px rgba(17,24,39,.06);
    --evci-radius-xl:24px;
}

.ev-forgot-page{
    position:relative;
    padding:20px 0 24px;
    background:transparent;
    overflow:visible;
}

.ev-forgot-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin:0 0 20px;
    padding:14px 18px;
    background:#ffffff;
    border:1px solid rgba(40,61,78,.08);
    border-radius:16px;
    box-shadow:0 8px 22px rgba(17,24,39,.05);
    font-size:14px;
    color:var(--evci-muted);
    line-height:1.2;
}

.ev-forgot-breadcrumb a{
    display:inline-flex;
    align-items:center;
    color:var(--evci-primary);
    text-decoration:none;
    font-weight:700;
    transition:color .18s ease;
}

.ev-forgot-breadcrumb a:hover{
    color:#1d3142;
}

.ev-forgot-breadcrumb span{
    display:inline-flex;
    align-items:center;
    color:#8a94a6;
}

.ev-forgot-breadcrumb span:last-child{
    color:var(--evci-text);
    font-weight:600;
}

.ev-forgot-breadcrumb a + span{
    position:relative;
    padding-left:14px;
}

.ev-forgot-breadcrumb a + span::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--evci-gold);
    transform:translateY(-50%);
}

.ev-forgot-grid{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:24px;
    align-items:start;
}

.ev-forgot-left,
.ev-forgot-card{
    background:#ffffff;
    border:1px solid rgba(40,61,78,.06);
    border-radius:var(--evci-radius-xl);
    box-shadow:var(--evci-shadow);
}

.ev-forgot-left{
    padding:34px;
    min-height:100%;
}

.ev-forgot-badge{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:0 16px;
    border-radius:999px;
    background:rgba(219,193,100,.18);
    color:var(--evci-primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.2px;
    margin-bottom:18px;
}

.ev-forgot-title{
    margin:0 0 14px;
    color:var(--evci-text);
    font-size:36px;
    line-height:1.2;
    font-weight:800;
}

.ev-forgot-desc{
    margin:0;
    color:var(--evci-muted);
    font-size:16px;
    line-height:1.75;
    max-width:640px;
}

.ev-forgot-features{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
    margin-top:28px;
}

.ev-forgot-feature-card{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:18px;
    border:1px solid rgba(40,61,78,.08);
    border-radius:18px;
    background:#fbfcfe;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ev-forgot-feature-card:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(17,24,39,.05);
    border-color:rgba(40,61,78,.12);
}

.ev-forgot-feature-icon{
    width:44px;
    height:44px;
    flex:0 0 44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:var(--evci-primary);
    color:#fff;
    font-size:13px;
    font-weight:800;
    letter-spacing:.4px;
}

.ev-forgot-feature-content h3{
    margin:0 0 6px;
    color:var(--evci-text);
    font-size:17px;
    font-weight:700;
}

.ev-forgot-feature-content p{
    margin:0;
    color:var(--evci-muted);
    font-size:14px;
    line-height:1.7;
}

.ev-forgot-right{
    display:flex;
}

.ev-forgot-card{
    width:100%;
    padding:34px 30px 30px;
    align-self:stretch;
}

.ev-forgot-card-top{
    margin-bottom:24px;
}

.ev-forgot-chip{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    background:rgba(40,61,78,.08);
    color:var(--evci-primary);
    font-size:12px;
    font-weight:800;
    letter-spacing:.3px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.ev-forgot-card-top h2{
    margin:0 0 8px;
    color:var(--evci-text);
    font-size:30px;
    font-weight:800;
}

.ev-forgot-card-top p{
    margin:0;
    color:var(--evci-muted);
    font-size:15px;
    line-height:1.7;
}

.ev-forgot-form{
    display:grid;
    gap:16px;
}

.ev-form-group{
    display:block;
}

.ev-form-label{
    display:inline-block;
    margin-bottom:8px;
    color:var(--evci-text);
    font-size:14px;
    font-weight:700;
}

.ev-form-input{
    width:100%;
    height:52px;
    border:1px solid var(--evci-border);
    border-radius:16px;
    background:#fff;
    padding:0 16px;
    color:var(--evci-text);
    font-size:15px;
    font-weight:500;
    outline:none;
    transition:border-color .18s ease, box-shadow .18s ease;
    box-sizing:border-box;
}

.ev-form-input::placeholder{
    color:#9ca3af;
}

.ev-form-input:focus{
    border-color:rgba(40,61,78,.35);
    box-shadow:0 0 0 4px rgba(40,61,78,.08);
}

.ev-form-input.is-invalid{
    border-color:rgba(185,28,28,.45);
    box-shadow:none;
}

.ev-forgot-submit,
.ev-back-login-btn{
    width:100%;
    min-height:54px;
    border:0;
    border-radius:16px;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:800;
    transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    box-sizing:border-box;
}

.ev-forgot-submit{
    position:relative;
    background:var(--evci-primary);
    color:#fff;
    cursor:pointer;
    box-shadow:0 14px 28px rgba(40,61,78,.16);
}

.ev-forgot-submit:hover{
    transform:translateY(-1px);
}

.ev-forgot-submit:disabled,
.ev-forgot-submit.is-loading{
    opacity:.78;
    cursor:not-allowed;
    transform:none !important;
    box-shadow:0 10px 20px rgba(40,61,78,.12);
}

.ev-forgot-submit.is-loading::after{
    content:"";
    width:16px;
    height:16px;
    margin-left:10px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.35);
    border-top-color:#ffffff;
    display:inline-block;
    animation:evForgotSpin .8s linear infinite;
    vertical-align:middle;
}

@keyframes evForgotSpin{
    to{
        transform:rotate(360deg);
    }
}

.ev-forgot-divider{
    position:relative;
    text-align:center;
    margin:22px 0 18px;
}

.ev-forgot-divider::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    right:0;
    border-top:1px solid var(--evci-border);
    transform:translateY(-50%);
}

.ev-forgot-divider span{
    position:relative;
    z-index:2;
    display:inline-block;
    padding:0 12px;
    background:#fff;
    color:var(--evci-muted);
    font-size:13px;
    font-weight:600;
}

.ev-forgot-bottom{
    text-align:center;
}

.ev-forgot-bottom p{
    margin:0 0 12px;
    color:var(--evci-muted);
    font-size:14px;
}

.ev-back-login-btn{
    background:rgba(219,193,100,.22);
    color:var(--evci-primary);
    border:1px solid rgba(219,193,100,.45);
}

.ev-back-login-btn:hover{
    transform:translateY(-1px);
}

@media (max-width:1199px){
    .ev-forgot-title{
        font-size:32px;
    }
}

@media (max-width:991px){
    .ev-forgot-page{
        padding:16px 0 22px;
    }

    .ev-forgot-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .ev-forgot-left{
        padding:24px;
    }

    .ev-forgot-card{
        padding:26px 20px 22px;
    }
}

@media (max-width:767px){
    .ev-forgot-page{
        padding:12px 0 18px;
    }

    .ev-forgot-page .container{
        width:100%;
        max-width:100%;
        padding-left:12px;
        padding-right:12px;
        box-sizing:border-box;
    }

    .ev-forgot-grid{
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .ev-forgot-right{
        order:1;
        width:100%;
    }

    .ev-forgot-left{
        order:2;
        width:100%;
    }

    .ev-forgot-breadcrumb{
        gap:8px;
        margin-bottom:12px;
        padding:12px 14px;
        border-radius:14px;
        font-size:13px;
    }

    .ev-forgot-left,
    .ev-forgot-card{
        width:100%;
        max-width:100%;
        border-radius:18px;
        box-sizing:border-box;
    }

    .ev-forgot-card{
        padding:20px 14px 18px;
    }

    .ev-forgot-left{
        padding:18px 14px;
    }

    .ev-forgot-title{
        font-size:25px;
        line-height:1.24;
    }

    .ev-forgot-desc{
        font-size:14px;
        line-height:1.7;
    }

    .ev-forgot-card-top h2{
        font-size:25px;
    }

    .ev-forgot-feature-card{
        padding:15px;
        border-radius:15px;
    }
}

@media (max-width:575px){
    .ev-forgot-page .container{
        padding-left:10px;
        padding-right:10px;
    }

    .ev-forgot-breadcrumb{
        padding:10px 12px;
        border-radius:12px;
        font-size:12.5px;
    }

    .ev-forgot-left,
    .ev-forgot-card{
        border-radius:16px;
    }

    .ev-forgot-title{
        font-size:23px;
    }

    .ev-forgot-card-top p,
    .ev-forgot-desc{
        font-size:14px;
    }

    .ev-form-input{
        height:50px;
        font-size:14px;
        border-radius:14px;
    }

    .ev-forgot-submit,
    .ev-back-login-btn{
        min-height:50px;
        font-size:14px;
        border-radius:14px;
    }
}
