

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    min-height:100vh;
    overflow:hidden;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#000;
}

/* BACKGROUND IMAGE */
.bg-image{
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.78)),
        url('/images/login-bg.jpg') center center/cover no-repeat;
    filter:blur(2px);
    transform:scale(1.05);
}

/* DARK OVERLAY */
.bg-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center,
        rgba(255,122,0,.08),
        rgba(0,0,0,.9));
}

/* LOGIN BOX */
.login-container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:480px;
    padding:20px;
}

.login-box{
    background:rgba(12,12,12,.82);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;
    padding:45px 40px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.7),
        inset 0 1px 0 rgba(255,255,255,.04);
}

/* LOGO */
.logo{
    text-align:center;
    margin-bottom:30px;
}

.logo img{
    width:180px;
    max-width:100%;
    margin-bottom:14px;
}

.logo-text{
    color:#ff7a00;
    font-size:18px;
    letter-spacing:2px;
    font-weight:600;
}

/* ERROR */
.error{
    background:rgba(120,0,0,.25);
    border:1px solid rgba(255,70,70,.5);
    color:#ff8c8c;
    padding:16px;
    border-radius:14px;
    margin-bottom:22px;
    font-size:15px;
}

/* FORM */
form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.input-group{
    display:flex;
    flex-direction:column;
}

label{
    color:#ddd;
    margin-bottom:10px;
    font-size:15px;
}

input{
    height:58px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.04);
    padding:0 18px;
    color:#fff;
    font-size:16px;
    outline:none;
    transition:.25s;
}

input:focus{
    border-color:#ff7a00;
    box-shadow:0 0 0 4px rgba(255,122,0,.15);
}

/* BUTTON */
.login-btn{
    height:58px;
    border:none;
    border-radius:14px;
    background:linear-gradient(180deg,#ff8f1f,#ff6a00);
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
    margin-top:8px;
}

.login-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(255,122,0,.25);
}

/* BACK BUTTON */
.back-btn{
    margin-top:18px;
    height:56px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.03);
    transition:.25s;
    font-size:15px;
    letter-spacing:.5px;
}

.back-btn:hover{
    background:rgba(255,255,255,.08);
}

/* FOOTER */
.footer-text{
    text-align:center;
    color:#888;
    margin-top:24px;
    font-size:14px;
}

.footer-text span{
    color:#ff7a00;
}

/* MOBILE */
@media(max-width:600px){

    .login-box{
        padding:38px 24px;
    }

    .logo img{
        width:220px;
    }

}


