.auth-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#0c7286,#063c45);

}

.auth-card{
    width:100%;
    max-width:420px;
    padding:2rem;
    margin: 10px;
    background:white;
    border-radius:16px;

    box-shadow:0 20px 40px rgba(0,0,0,.2);

}
[data-bs-theme="dark"] .auth-card{
    background:#1e1e1e;
    color:white;
}