*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Segoe UI',sans-serif;

    background:linear-gradient(135deg,#0f5132,#198754,#20c997);

    height:100vh;

    overflow:hidden;

}

.login-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    height:100vh;

    padding:20px;

}

.login-card{

    width:430px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:20px;

    padding:45px;

    color:#fff;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.logo{

    text-align:center;

    margin-bottom:35px;

}

.logo i{

    font-size:60px;

    color:#fff;

    margin-bottom:15px;

}

.logo h2{

    font-size:34px;

    font-weight:bold;

}

.logo p{

    color:#f1f1f1;

    margin-top:5px;

}

label{

    font-weight:600;

    margin-bottom:8px;

    display:block;

}

.input-group{

    border-radius:10px;

    overflow:hidden;

}

.input-group-text{

    background:#fff;

    border:none;

}

.form-control{

    height:52px;

    border:none;

    box-shadow:none;

}

.form-control:focus{

    box-shadow:none;

}

.btn-login{

    width:100%;

    height:55px;

    background:#198754;

    color:#fff;

    font-size:18px;

    font-weight:600;

    border:none;

    border-radius:10px;

    transition:.3s;

}

.btn-login:hover{

    background:#146c43;

    transform:translateY(-2px);

}

a{

    color:#fff;

    text-decoration:none;

}

a:hover{

    text-decoration:underline;

}

input[type=checkbox]{

    accent-color:#198754;

}

@media(max-width:500px){

.login-card{

width:100%;

padding:30px;

}

.logo h2{

font-size:28px;

}

}