body{
    background: #f5f7fb;
    height:100vh;
}

.login-center{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.login-card{
    width:100%;
    max-width:400px;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.login-title{
    text-align:center;
    font-size:24px;
    font-weight:600;
    margin-bottom:25px;
}

.form-control{
    height:45px;
    border-radius:8px;
}

.btn-login{
    width:100%;
    height:45px;
    border-radius:8px;
    font-weight:600;
    font-size:15px;
}

.login-logo{
    text-align:center;
    margin-top:20px;
}

.login-logo img{
    max-width:180px;
    opacity:0.9;
}

.meu-modal-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.meu-modal{
    background:#fff;
    width:90%;
    max-width:420px;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.20);
    animation:fadeModal .3s ease;
}

.meu-modal h3{
    margin-top:0;
    margin-bottom:15px;
    font-weight:700;
    color:#071A35;
}

.meu-modal p{
    font-size:16px;
    color:#666;
    margin-bottom:25px;
}

.meu-modal button{
    background:#08d4ff;
    border:none;
    color:#071A35;
    font-weight:700;
    padding:12px 35px;
    border-radius:30px;
    cursor:pointer;
    transition:.3s;
}

.meu-modal button:hover{
    transform:translateY(-2px);
}

@keyframes fadeModal{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}