*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,Arial,sans-serif;
}

body{
    background:linear-gradient(135deg,#0f172a,#1e293b,#0f172a);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.wrapper{
    width:100%;
    max-width:520px;
}

.card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,0.35);
    overflow:hidden;
}

.header{
    padding:28px;
    background:linear-gradient(90deg,#2563eb,#0891b2);
    color:#fff;
}

.auth-brand-logo-box{
    width:100%;
    padding:9px 12px;
    margin-bottom:14px;
    border-radius:12px;
    background:#ffffff;
    box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.auth-brand-logo{
    display:block;
    width:min(100%, 330px);
    max-height:78px;
    height:auto;
    object-fit:contain;
    margin:0 auto;
}

.auth-product{
    margin-bottom:8px;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    opacity:.96;
}

.header h1{
    font-size:24px;
    font-weight:700;
}

.header p{
    margin-top:8px;
    font-size:14px;
    opacity:0.92;
}

.content{
    padding:30px;
    color:#fff;
}

.notice{
    background:rgba(59,130,246,0.12);
    border:1px solid rgba(59,130,246,0.25);
    padding:14px;
    border-radius:10px;
    font-size:14px;
    margin-bottom:22px;
    line-height:1.5;
}

.form-group{
    margin-bottom:18px;
}

label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
}

input{
    width:100%;
    padding:13px 14px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.18);
    background:rgba(255,255,255,0.08);
    color:#fff;
    outline:none;
    font-size:14px;
}

input:focus{
    border-color:#38bdf8;
    box-shadow:0 0 0 3px rgba(56,189,248,0.18);
}

input::placeholder{
    color:#cbd5e1;
}

.btn{
    width:100%;
    border:none;
    padding:14px;
    border-radius:10px;
    background:linear-gradient(90deg,#2563eb,#06b6d4);
    color:#fff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:0.2s;
}

.btn:hover{
    transform:translateY(-1px);
    opacity:0.96;
}

.links{
    margin-top:18px;
    text-align:center;
}

.links a{
    color:#7dd3fc;
    text-decoration:none;
    font-size:14px;
}

.links a:hover{
    text-decoration:underline;
}

.footer{
    margin-top:16px;
    text-align:center;
    color:#cbd5e1;
    font-size:12px;
}

.success{
    background:#14532d;
    color:#dcfce7;
    padding:12px;
    border-radius:10px;
    margin-bottom:18px;
    font-size:14px;
}

.error{
    background:#7f1d1d;
    color:#fee2e2;
    padding:12px;
    border-radius:10px;
    margin-bottom:18px;
    font-size:14px;
}

.warning{
    background:#78350f;
    color:#fef3c7;
    padding:12px;
    border-radius:10px;
    margin-bottom:18px;
    font-size:14px;
}

@media(max-width:600px){
    .content{
        padding:22px;
    }
}

.footer strong{color:#ffffff;letter-spacing:.4px}
.footer span{display:inline-block;margin-top:3px;opacity:.82}
