/* Esports Forms Integration */
.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-family: var(--font-header);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    background: #000;
    border: 1px solid var(--color-border-subtle);
    padding: 1rem;
    color: var(--color-text-main);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
    border-radius: 0;
}

.form-input:focus {
    border-color: var(--color-accent-brand);
    box-shadow: 0 0 10px var(--color-accent-glow);
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    margin-top: 1rem;
}

.checkbox-input {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--color-accent-brand);
    cursor: pointer;
    margin-top: 0.2rem;
}

.checkbox-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.checkbox-text a {
    color: var(--color-accent-brand);
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}
