body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: radial-gradient(ellipse at 60% 40%, #1a1200 0%, var(--bg) 70%);
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    padding: 48px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
}

/* Logo / nome do servidor */
h2 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 16px;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

h1 a {
    color: var(--text);
    text-decoration: none;
}

h1 a:hover {
    color: var(--accent);
}

h3 {
    font-size: 13px;
    color: var(--text-3);
    font-weight: 400;
    margin-bottom: 32px;
}

.main-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    border-radius: 10px;
}

.main-btn svg {
    width: 20px;
}
