*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    position:relative;
}

/* IMAGEM DE FUNDO */

body::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:url('assets/img/Bufalo.jfif') no-repeat center center/cover;
    filter:blur(2px);
    transform:scale(1.05);
    z-index:-2;
}

/* ESCURECER FUNDO */

body::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    z-index:-1;
}

/* CONTAINER */

.login-container{
    width:100%;
    max-width:430px;
    padding:20px;
}

/* CARD */

.login-card{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
    color:#fff;
}

/* HEADER */

.login-header{
    text-align:center;
    padding:35px 20px 20px;
}

.login-header i{
    font-size:60px;
    margin-bottom:15px;
    color:#fff;
}

.login-header h2{
    font-weight:700;
    margin-bottom:5px;
}

.login-header p{
    color:#ddd;
}

/* BODY */

.login-body{
    padding:30px;
}

.form-label{
    color:#fff;
    font-weight:600;
}

.form-control{
    height:52px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,0.9);
}

.form-control:focus{
    box-shadow:none;
    border:2px solid #0d6efd;
}

.input-group-text{
    border:none;
    background:#0d6efd;
    color:#fff;
    border-radius:12px 0 0 12px;
}

/* BOTÃO */

.btn-login{
    height:52px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.btn-login:hover{
    transform:translateY(-2px);
}

/* LINKS */

.links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.links a:hover{
    text-decoration:underline;
}

/* RESPONSIVO */

@media(max-width:576px){

    .login-body{
        padding:20px;
    }

    .login-header{
        padding:25px 15px 15px;
    }

}