.auth-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background: #D5E8E8;
}

[data-bs-theme="dark"] .auth-wrapper{
    background: #12192D;
}

.auth-card{
    width:100%;
    max-width:420px;
    padding:2rem;
    margin: 10px;
    background:#fff;
    border-radius:16px;

    box-shadow:0 20px 40px rgba(0,0,0,.2);

}
[data-bs-theme="dark"] .auth-card{
    color:white;
    background-color: #16223a;
    border: 1px solid #2d394c;
}