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

body{

    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

    background:
    linear-gradient(
        135deg,
        #020817 0%,
        #08152f 40%,
        #111827 100%
    );

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    position:relative;
}

/* BLUE GLOW */

.background-glow{

    position:absolute;

    width:700px;
    height:700px;

    left:-150px;
    top:-150px;

    background:
    radial-gradient(
        circle,
        rgba(37,99,235,.25),
        transparent 70%
    );

    filter:blur(90px);
}

/* ORANGE GLOW */

.orange-glow{

    position:absolute;

    width:600px;
    height:600px;

    right:-200px;
    bottom:-200px;

    background:
    radial-gradient(
        circle,
        rgba(245,158,11,.16),
        transparent 70%
    );

    filter:blur(100px);
}

/* LOGIN CARD */

.login-container{

    position:relative;

    width:430px;

    background:rgba(15,23,42,.78);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:50px;

    backdrop-filter:blur(30px);

    box-shadow:
        0 20px 60px rgba(0,0,0,.45);

    z-index:10;
}

/* LOGO */

.logo-area{

    text-align:center;

    margin-bottom:40px;
}

.logo-area img{

    width:120px;

    margin-bottom:25px;
}

.logo-area h1{

    color:white;

    font-size:38px;

    font-weight:700;

    margin-bottom:10px;
}

.logo-area p{

    color:#94a3b8;

    font-size:16px;
}

/* FORM */

.login-form{

    display:flex;

    flex-direction:column;

    gap:16px;
}

.login-form input{

    background:#1e293b;

    border:1px solid transparent;

    color:white;

    padding:16px;

    border-radius:14px;

    font-size:15px;

    transition:.3s;
}

.login-form input:focus{

    outline:none;

    border:1px solid #3b82f6;
}

/* BUTTON */

.login-form button{

    margin-top:10px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #f59e0b
    );

    color:white;

    border:none;

    padding:16px;

    border-radius:14px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

    box-shadow:
        0 10px 25px rgba(37,99,235,.25);
}

.login-form button:hover{

    transform:translateY(-2px);

    box-shadow:
        0 15px 35px rgba(37,99,235,.35);
}

/* FOOTER */

.footer{

    margin-top:25px;

    text-align:center;

    color:#64748b;

    font-size:13px;
}

/* MOBILE */

@media(max-width:600px){

    .login-container{

        width:92%;

        padding:35px 25px;
    }

    .logo-area img{

        width:100px;
    }

    .logo-area h1{

        font-size:30px;
    }
}