body {
    background: #f4f7fb;
    font-family: Arial, sans-serif;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef6fb, #ffffff);
}

.auth-card {
    width: 420px;
    background: #fff;
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.auth-logo img {
    max-width: 190px;
}

.btn-consolare {
    background: #006ba6;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
}

.btn-consolare:hover {
    background: #005985;
    color: #fff;
}