*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0f172a;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

body::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:#ff8800;
    filter:blur(180px);
    top:-200px;
    left:-200px;
    opacity:0.25;
}

body::after{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:#2563eb;
    filter:blur(180px);
    bottom:-200px;
    right:-200px;
    opacity:0.25;
}

.login-wrapper{
    position:relative;
    z-index:10;
    width:100%;
    max-width:420px;
    padding:20px;
}

.login-card{
    background:rgba(15,23,42,0.9);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:40px;
    box-shadow:0 0 40px rgba(0,0,0,0.35);
}

.logo-area{
    text-align:center;
    margin-bottom:35px;
}

.logo-circle{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#ff8800,#ff5500);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;
    box-shadow:0 0 30px rgba(255,136,0,0.4);
}

.logo-area h1{
    color:#fff;
    font-size:32px;
    margin-bottom:8px;
}

.logo-area p{
    color:#94a3b8;
    font-size:14px;
}

.input-group{
    margin-bottom:22px;
}

.input-group label{
    display:block;
    color:#cbd5e1;
    margin-bottom:10px;
    font-size:14px;
}

.input-group input{
    width:100%;
    height:55px;
    border:none;
    outline:none;
    border-radius:14px;
    padding:0 18px;
    background:#1e293b;
    color:#fff;
    font-size:15px;
    transition:0.3s;
}

.input-group input:focus{
    background:#263548;
    box-shadow:0 0 0 2px #ff8800;
}

.login-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#ff8800,#ff5500);
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    margin-top:10px;
}

.login-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(255,136,0,0.35);
}

.login-footer{
    margin-top:30px;
    text-align:center;
    color:#64748b;
    font-size:13px;
}

@media(max-width:480px){

.login-card{
    padding:30px 25px;
}

.logo-area h1{
    font-size:26px;
}

}
.error-message{
    background:#7f1d1d;
    border:1px solid #ef4444;
    color:#fff;
    padding:14px;
    border-radius:12px;
    margin-bottom:20px;
    text-align:center;
    font-size:14px;
}