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

body{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    margin:0;
    background:url('../images/mlgroup.jpg');
    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;
    background-attachment:fixed;
    overflow:hidden;
}

.login-container{
    width:380px;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
    text-align:center;
}

.logo{
    width:90px;
    margin-bottom:15px;
}

.login-container h2{
    color:#b30000;
    margin-bottom:30px;
    letter-spacing:2px;
}

.input-group{
    text-align:left;
    margin-bottom:20px;
}

.input-group label{
    display:block;
    margin-bottom:8px;
    color:#555;
    font-weight:bold;
}

.input-group input{
    width:100%;
    padding:12px 15px;
    border:2px solid #ddd;
    border-radius:8px;
    font-size:15px;
    transition:.3s;
}

.input-group input:focus{
    outline:none;
    border-color:#c1121f;
    box-shadow:0 0 8px rgba(193,18,31,.3);
}

.btn{
    width:100%;
    padding:13px;
    border:none;
    border-radius:8px;
    background:linear-gradient(90deg,#8b0000,#d90429);
    color:#fff;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.btn:hover{
    background:linear-gradient(90deg,#d90429,#8b0000);
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(217,4,41,.35);
}

.error-message{
    margin-top:15px;
    color:#d90429;
    font-weight:bold;
}

.loading-message{
    margin-top:10px;
    color:#777;
}

@media(max-width:480px){

    .login-container{
        width:92%;
        padding:30px;
    }

}