html,
body{
    margin:0;
    padding:0;
    height:100%;
    font-family:'Poppins', Calibri, Arial, sans-serif;
}

body{
    background: url("{{ asset('assets/img/background-login.jpg') }}") center center/cover no-repeat fixed;
    position:relative;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.72);
    z-index:1;
}

.login-wrapper{
    position:relative;
    z-index:2;
    width: calc(100% - 10px);
    margin: 5px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:0;
}

.login-box{
    width:100%;
    max-width:600px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(10px);
    border-radius:12px;
    padding:25px;
    box-shadow:0 15px 45px rgba(0,0,0,.35);
    text-align:center;
}

.logo{
    width:120px;
    height:auto;
}

h2{
    margin:10px 0;
    color:#0057b8;
    font-size:16px;
}

.form-group{
    margin-bottom:10px;
    text-align:left;
}

.form-group label{
    display:block;
    margin-bottom:0;
    font-weight:bold;
    color:#444;
    font-size: 12px;
}

.form-control{
    width:100%;
    padding:12px 15px;
    border:1px solid #d8d8d8;
    border-radius:6px;
    font-size:13px;
    box-sizing:border-box;
    transition:.2s;
    text-align: center;
}

.form-control:focus{
    outline:none;
    border-color:#0057b8;
}

.btn-login{
    width:100%;
    border:none;
    background:#0057b8;
    color:#fff;
    padding:13px;
    border-radius:6px;
    font-size:13px;
    font-weight:bold;
    cursor:pointer;
    transition:.2s;
}

.btn-login:hover{
    background:#00489a;
}

.alert{
    background:#ffe5e5;
    color:#b00020;
    border-radius:6px;
    padding:12px;
    margin-bottom:20px;
    text-align:left;
}

.rodape{

    margin-top:25px;

    font-size:13px;

    color:#666;

    line-height:20px;

}

.codigo{

    font-weight:bold;
    text-decoration: none;
    color:#0057b8;

}

@media(max-width:600px){

    .login-box{
        padding:25px;
    }

    h2{
        font-size:24px;
    }
    .logo{
        width:95px;
    }
    .form-control{
        font-size:16px;
    }
    .modal-box{
        margin: 0 10px;
        padding: 0 5px;
        text-align: center;
        box-shadow: 0 20px 50px rgba(0,0,0,.25);
    }
}

.modal-info {
    padding: 0;
    gap: 0;
    margin: 0 0 15px 0;
}
.modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.90);
    display: none;
    align-items: start;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.show{
    display: flex;
}

.modal-box{
    margin-top: 50px;
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.modal-box h3{
    margin-bottom: 15px;
}

.modal-box p{
    margin-bottom:20px;
    color:#666;
}
.modal-box small {
    margin-bottom: 15px;
}
.email-destino{
    font-size:18px;
    font-weight:600;
    margin-bottom:25px;
}

.modal-buttons{
    display:flex;
    gap:12px;
    margin-top: 15px;
}

.btn-secundario{
    flex:1;

    background:#ececec;
    border:none;
    border-radius:8px;
    padding:12px;

    cursor:pointer;
}

.modal-buttons .btn-login{
    flex:1;
}