/* Unique Styles for Home Form Flow */
.setup-container {
    max-width: 680px;
    margin: 2rem auto;
    background: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--color-structure-muted);
    margin-bottom: 2.5rem;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input[type="text"],
.form-field select {
    background-color: transparent;
    border: 2px solid var(--color-structure);
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-structure);
    transition: var(--transition-smooth);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-field small {
    color: var(--color-structure-muted);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Link Panel Blocks */
.success-panel {
    border: 2px solid var(--color-structure);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.link-group input {
    background-color: rgba(30, 20, 29, 0.05);
    border: 1px solid var(--color-structure);
    padding: 1rem;
    font-family: monospace;
    font-size: 1rem;
    width: 100%;
}

.link-group input.admin-input {
    border-style: dashed;
    color: var(--color-accent);
}

.alert-box.error {
    border-left: 4px solid #D9534F;
    padding: 1rem;
    background-color: rgba(217, 83, 79, 0.1);
    margin-bottom: 1.5rem;
}