:root {
    --bg: #f4f7fb;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #d9e2ec;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --red: #dc2626;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 18px;
}

.container {
    width: 100%;
    height: fit-content;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
    margin: 20px 20px;
    padding: 20px 20px;
}

.h1 {
    font-weight: 600;
}

.main-link {
    padding: 10px 10px;
    background-color: #dc2626;
    border-radius: var(--radius);
    color: black;
    font-weight: 600;
}