/* Erstgespräch-Formular: 1:1 Port von karlkratz.de style.css (Purchase Forms, Zeilen 3971-3987 + 4180-4250) + SVG-Icon-Ersatz für FontAwesome. */

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border, #d1d5db);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--color-bg-primary, #fff);
    color: var(--color-text-primary, #333);
}

/* --- Form Layout Utilities --- */
.purchase-form-section {
    margin-bottom: 20px;
}

.purchase-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

/* --- Honeypot Field (spam protection) --- */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* --- Help Text --- */
.form-help-text {
    color: var(--color-text-secondary, #555);
    display: block;
    margin-top: 5px;
    font-size: 0.875rem;
}

/* --- Seitenklassen (CSP style-src self: Ersatz für die Inline-Styles des Originals, Werte 1:1) --- */
.eg-subline {
    text-align: center;
    margin-bottom: 30px;
}

.eg-step2 {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eg-termin-box {
    margin: 30px 0;
}

.eg-termin-line {
    margin: 0;
}

.eg-termin-summary {
    color: #007bff;
    font-weight: bold;
}

.eg-back-btn {
    margin-top: 10px;
    padding: 6px 12px;
    border: 1px solid #007bff;
    background: white;
    color: #007bff;
    border-radius: 4px;
    cursor: pointer;
}

.eg-theme-section {
    margin-bottom: 30px;
}

.eg-theme-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.eg-required {
    color: red;
}

.eg-theme-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    resize: vertical;
}

.eg-result {
    margin-top: 30px;
    display: none;
}

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

.eg-bold-center {
    text-align: center;
    font-weight: bold;
}

.eg-success-text {
    margin: 0;
    line-height: 1.6;
}

.eg-success-hint {
    margin: 15px 0 0 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.eg-mail-link {
    color: #155724;
    font-weight: bold;
}

.eg-error-text {
    font-weight: bold;
}

/* --- SVG-Icons (Ersatz für FontAwesome-Icons des Originals) --- */
.inline-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    display: inline-block;
}

.spinner-icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    animation: eg-spin 1s linear infinite;
}

@keyframes eg-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
