/* ==========================================
        PASSWORD STRENGTH CHECKER
========================================== */

.tool-container{

    max-width:900px;

    margin:60px auto;

}

.password-box{

    display:flex;

    gap:20px;

    margin-bottom:40px;

}

.password-box input{

    flex:1;

    height:70px;

    padding:0 25px;

    font-size:22px;

    color:#ffffff;

    background:#111827;

    border:2px solid #334155;

    border-radius:16px;

    outline:none;

    transition:.3s;

}

.password-box input:focus{

    border-color:#3b82f6;

    box-shadow:0 0 20px rgba(59,130,246,.25);

}

.password-box input::placeholder{

    color:#94a3b8;

}

.secondary-btn{

    height:70px;

    padding:0 35px;

    border:none;

    border-radius:16px;

    background:#1e293b;

    color:#ffffff;

    font-size:20px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.secondary-btn:hover{

    background:#2563eb;

}

/* ==========================================
        PASSWORD STRENGTH
========================================== */

.strength-box{

    margin-top:35px;

}

.strength-box label{

    display:block;

    font-size:30px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:18px;

}

.strength-bar{

    width:100%;

    height:18px;

    background:#1f2937;

    border-radius:50px;

    overflow:hidden;

}

#strengthFill{

    width:0%;

    height:100%;

    background:linear-gradient(90deg,#ef4444,#f59e0b,#10b981);

    transition:.35s;

}

#strengthText{

    display:block;

    margin-top:18px;

    font-size:32px;

    font-weight:700;

    color:#ffffff;

}

/* ==========================================
        ANALYSIS
========================================== */

.analysis-box{

    margin-top:45px;

    padding:30px;

    background:#111827;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

}

.analysis-box h3{

    font-size:34px;

    color:#ffffff;

    margin-bottom:25px;

}

.analysis-box ul{

    list-style:none;

    padding:0;

    margin:0;

}

.analysis-box li{

    font-size:28px;

    color:#e5e7eb;

    margin:18px 0;

    display:flex;

    align-items:center;

    gap:15px;

    font-weight:600;

}

/* ==========================================
        CRACK TIME
========================================== */

.result-card{

    margin-top:40px;

    padding:30px;

    background:#111827;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

}

.result-card h3{

    font-size:32px;

    color:#ffffff;

    margin-bottom:20px;

}

.result-card p{

    font-size:28px;

    font-weight:700;

    color:#3b82f6;

}

/* ==========================================
        MOBILE
========================================== */

@media(max-width:768px){

.password-box{

    flex-direction:column;

}

.secondary-btn{

    width:100%;

}

.analysis-box h3{

    font-size:28px;

}

.analysis-box li{

    font-size:22px;

}

.result-card h3{

    font-size:26px;

}

.result-card p{

    font-size:22px;

}

}