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

body{
    min-height:100vh;
    background:linear-gradient(135deg,#020617,#0f172a,#1e293b);
}

.login-container{
    min-height:100vh;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-card{
    width:720px;
    padding:70px;
    border-radius:36px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.20);
    box-shadow:0 30px 90px rgba(0,0,0,.45);
    color:white;
}

.login-logo{
    text-align:center;
    margin-bottom:50px;
}

.login-logo img{
    width:150px;
    height:150px;
    object-fit:contain;
    margin-bottom:25px;
}

.login-logo h1{
    font-size:52px;
    margin-bottom:12px;
}

.login-logo p{
    font-size:26px;
    color:#cbd5e1;
}

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

.form-group label{
    display:block;
    font-size:26px;
    margin-bottom:15px;
}

.form-group input{
    width:100%;
    padding:28px;
    border-radius:22px;
    border:none;
    font-size:26px;
    outline:none;
}

button{
    width:100%;
    padding:28px;
    border:none;
    border-radius:22px;
    background:#2563eb;
    color:white;
    font-size:28px;
    font-weight:700;
    cursor:pointer;
}