    :root{
    --bg:#0f172a;
    --card:#1e293b;
    --card2:#273449;
    --border:#334155;
    --primary:#00d4ff;
    --green:#22c55e;
    --yellow:#facc15;
    --orange:#fb923c;
    --red:#ef4444;
    --text:#f8fafc;
    --muted:#94a3b8;
}




.edukov-password-app{
    max-width:1200px;
    margin:60px auto;
    padding:25px;
    color:var(--text);
    font-family:Inter,Segoe UI,Arial,sans-serif;
}

.eps-header{
    text-align:center;
    margin-bottom:35px;
}

.eps-header h1{
    font-size:42px;
    margin:0;
    font-weight:700;
    color:white;
}

.eps-header p{
    color:var(--muted);
    margin-top:12px;
    font-size:18px;
}

.eps-input-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:18px;
    padding:30px;
    margin-bottom:35px;
    box-shadow:0 20px 45px rgba(0,0,0,.30);
}

.eps-input-group{
    display:flex;
    align-items:center;
    gap:12px;
}

.eps-input-group input{
    flex:1;
    height:58px;
    border:none;
    outline:none;
    border-radius:12px;
    padding:0 20px;
    background:#111827;
    color:white;
    font-size:18px;
}
.eps-input-group{
    display:flex;
    align-items:center;
    gap:12px;
}

.eps-input-group input{
    flex:1;
    height:58px;
    padding:0 18px;
    border:none;
    outline:none;
    border-radius:12px;
    background:#4d496d;
    color:#fff;
    font-size:17px;
}

.eps-input-group .eps-action-btn{

    width:110px;
    min-width:110px;

    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;

    border-radius:12px;

    background:#3b82f6;

    color:#fff;

    font-size:15px;
    font-weight:600;

    white-space:nowrap;

    flex-shrink:0;

    cursor:pointer;

    transition:.25s;
}

.eps-input-group .eps-action-btn:hover{

    background:#2563eb;

    transform:translateY(-2px);

}

.eps-action-btn{
    min-width:100px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0 18px;

    border:none;
    border-radius:12px;

    background:#3b82f6;
    color:#fff;

    font-size:15px;
    font-weight:600;

    white-space:nowrap;
    overflow:hidden;

    cursor:pointer;

    transition:.25s;
}

.eps-action-btn:hover{
    background:#2563eb;
    transform:translateY(-2px);
}
.eps-action-btn:active{
    transform:scale(.97);
}
.eps-input-group button:hover{
    transform:translateY(-2px);
    background:#0284c7;
}

.eps-meter{
    margin-top:28px;
    width:100%;
    height:16px;
    border-radius:30px;
    background:#111827;
    overflow:hidden;
}

#eps-meter-fill{
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#ef4444,#f59e0b,#22c55e);
    transition:width .35s ease;
}

.eps-strength{
    margin-top:16px;
    font-size:22px;
    font-weight:700;
}

.eps-dashboard{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:35px;
}

.eps-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:16px;
    padding:25px;
    text-align:center;
    transition:.25s;
}

.eps-card:hover{
    transform:translateY(-4px);
}

.eps-title{
    color:var(--muted);
    margin-bottom:15px;
    font-size:15px;
}

.eps-value{
    font-size:34px;
    font-weight:700;
    color:var(--primary);
}

.eps-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.eps-panel{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:16px;
    padding:25px;
}

.eps-panel h2{
    margin-top:0;
    font-size:22px;
    margin-bottom:20px;
}

.eps-panel ul{
    list-style:none;
    margin:0;
    padding:0;
}

.eps-panel li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#d7e1ef;
}

.eps-panel li:last-child{
    border:none;
}

.eps-privacy{
    margin-top:35px;
    background:#052e16;
    border:1px solid #166534;
    color:#86efac;
    padding:18px;
    border-radius:14px;
    text-align:center;
    font-size:15px;
}

@media(max-width:1000px){

.eps-dashboard{
grid-template-columns:repeat(2,1fr);
}

.eps-grid{
grid-template-columns:1fr;
}

}

@media(max-width:700px){

.eps-input-group{
flex-wrap:wrap;
}

.eps-input-group input{
width:100%;
}

.eps-input-group button{
flex:1;
}

.eps-dashboard{
grid-template-columns:1fr;
}

.eps-header h1{
font-size:30px;
}

}

.eps-input-group button svg{
    width:22px !important;
    height:22px !important;
    display:block;
    margin:auto;
}

.eps-input-group button *{
    pointer-events:none;
}


.edukov-password-app button.eps-action-btn{

    writing-mode:horizontal-tb !important;
    text-orientation:mixed !important;

    word-break:keep-all !important;
    white-space:nowrap !important;

    display:flex !important;
    justify-content:center !important;
    align-items:center !important;

    width:110px !important;
    min-width:110px !important;
    height:58px !important;

    line-height:58px !important;

    overflow:hidden !important;

    letter-spacing:0 !important;

    font-size:15px !important;
    font-weight:600 !important;

}