.hero {
    background-color: #fdfdfd;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    margin-top: 3rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 420px;
    width: 100%;
    background: linear-gradient(135deg, #f5f7fa, #e4ebf1);
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.flex-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bg-base-100 {
    background-color: #f7f9fb;
}

.text-center {
    text-align: center;
}

.text-error {
    color: red;
}
