/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:25px;

    background:
    radial-gradient(circle at top,#7c3aed 0%,#312e81 35%,#0f172a 100%);

}

.container{

    width:460px;
    max-width:100%;

    background:rgba(20,20,35,.85);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    backdrop-filter:blur(18px);

    box-shadow:
    0 0 40px rgba(124,58,237,.35),
    0 20px 60px rgba(0,0,0,.45);

}

h1{

    color:white;

    text-align:center;

    font-size:30px;

    margin-bottom:8px;

}

.subtitle{

    color:#cbd5e1;

    text-align:center;

    margin-bottom:30px;

    font-size:15px;

}

label{

    display:block;

    color:#f8fafc;

    margin-bottom:8px;

    margin-top:18px;

    font-weight:600;

}

input{

    width:100%;

    padding:14px;

    border-radius:12px;

    border:2px solid transparent;

    background:#1e1b4b;

    color:white;

    font-size:16px;

    transition:.3s;

}

input:focus{

    outline:none;

    border-color:#8b5cf6;

    box-shadow:0 0 15px rgba(139,92,246,.45);

}

button{

    width:100%;

    margin-top:30px;

    padding:15px;

    border:none;

    border-radius:14px;

    background:linear-gradient(90deg,#7c3aed,#a855f7);

    color:white;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

button:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(168,85,247,.45);

}

.result{

    margin-top:30px;

    background:#0f172a;

    border-radius:18px;

    padding:22px;

    color:white;

    border:1px solid rgba(255,255,255,.08);

}

.result h2{

    color:#c084fc;

    text-align:center;

    margin-bottom:15px;

}

.result p{

    color:#cbd5e1;

    margin-top:15px;

}

.result h3{

    margin-top:8px;

    color:white;

    font-size:20px;

}

hr{

    border:none;

    height:1px;

    background:#334155;

    margin:16px 0;

}

.footer{

    text-align:center;

    margin-top:25px;

    color:#94a3b8;

    font-size:13px;

    line-height:1.8;

}

.footer strong{

    color:#ffffff;

}

@media(max-width:768px){

.container{

    padding:25px;

}

h1{

    font-size:25px;

}

}