*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#011538;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    overflow:hidden;

    position:relative;

}

/* Background Glow */

body::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:#C8A04D;

    border-radius:50%;

    filter:blur(150px);

    top:-120px;

    left:-120px;

    opacity:.15;

}

body::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:#2563eb;

    border-radius:50%;

    filter:blur(150px);

    bottom:-150px;

    right:-120px;

    opacity:.15;

}

/* Login Card */

.login-page{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

    position:relative;

    z-index:2;

}

.login-card{

    width:100%;

    max-width:460px;

    background:#fff;

    border-radius:24px;

    padding:45px;

    text-align:center;

    box-shadow:0 25px 70px rgba(0,0,0,.20);

}

/* Logo */

.login-logo{

    margin-bottom:25px;

}

.login-logo img{

    width:280px;

    max-width:100%;

    height:auto;

    display:block;

    margin:auto;

}

/* Heading */

.login-card h2{

    font-size:36px;

    color:#011538;

    margin-bottom:8px;

}

.login-card p{

    color:#64748b;

    margin-bottom:35px;

    font-size:15px;

}

/* Input */

.input-group{

    position:relative;

    margin-bottom:20px;

}

.input-group i{

    position:absolute;

    left:18px;

    top:19px;

    color:#94a3b8;

}

.input-group input{

    width:100%;

    height:58px;

    border:1px solid #d9dee7;

    border-radius:14px;

    padding-left:52px;

    padding-right:18px;

    font-size:15px;

    transition:.3s;

}

.input-group input:focus{

    border-color:#C8A04D;

    box-shadow:0 0 0 4px rgba(200,160,77,.15);

    outline:none;

}

/* Button */

.login-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:14px;

    background:#C8A04D;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.login-btn:hover{

    background:#011538;

}

/* Error */

.login-error{

    margin-top:18px;

    color:#dc2626;

    font-size:14px;

}

/* Footer */

.login-footer{

    margin-top:25px;

    font-size:13px;

    color:#64748b;

}

.login-footer strong{

    color:#011538;

}

/* Mobile */

@media(max-width:576px){

.login-card{

    padding:30px 22px;

}

.login-logo img{

    width:220px;

}

.login-card h2{

    font-size:30px;

}

}
