/**
 * Elállási Jog - Frontend stílusok
 */

.elallasi-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.elallasi-form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.elallasi-form-header h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #333;
}

.elallasi-form-header p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.elallasi-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.elallasi-form-row--full {
    flex-direction: column;
}

.elallasi-form-field {
    flex: 1;
}

.elallasi-form-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.elallasi-form-field label .required {
    color: #dc3545;
}

.elallasi-form-field input[type="text"],
.elallasi-form-field input[type="email"],
.elallasi-form-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.elallasi-form-field input[type="text"]:focus,
.elallasi-form-field input[type="email"]:focus,
.elallasi-form-field textarea:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.15);
    outline: none;
}

.elallasi-form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.elallasi-form-consent {
    margin: 25px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #0073aa;
}

.elallasi-form-consent p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

.elallasi-form-consent a {
    color: #0073aa;
    text-decoration: underline;
    font-weight: 600;
}

.elallasi-form-consent a:hover {
    color: #005177;
}

.elallasi-form-submit {
    text-align: center;
    margin-top: 20px;
}

.elallasi-submit-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.elallasi-submit-btn:hover {
    background: #005177;
}

.elallasi-submit-btn:active {
    transform: translateY(1px);
}

/* Sikeres beküldés */
.elallasi-success {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 25px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    color: #155724;
}

.elallasi-success p {
    margin: 0 0 5px 0;
}

.elallasi-success p:last-child {
    margin-bottom: 0;
}

/* Hibák */
.elallasi-errors {
    max-width: 700px;
    margin: 0 auto 20px auto;
    padding: 15px 20px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    color: #721c24;
}

.elallasi-errors ul {
    margin: 0;
    padding: 0 0 0 18px;
}

.elallasi-errors li {
    margin-bottom: 4px;
}

.elallasi-errors li:last-child {
    margin-bottom: 0;
}

/* Reszponzív */
@media (max-width: 600px) {
    .elallasi-form-wrapper {
        padding: 20px;
    }

    .elallasi-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .elallasi-submit-btn {
        width: 100%;
    }
}
