/* Feliratkozási űrlap stílusok */

.modul-subscription-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modul-form-group {
    margin-bottom: 20px;
}

.modul-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.modul-form-group label .required {
    color: #e74c3c;
}

.modul-form-group input[type="text"],
.modul-form-group input[type="email"],
.modul-form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.modul-form-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.modul-form-group input::placeholder {
    color: #aaa;
}

.modul-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.modul-submit-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.modul-submit-btn:active {
    transform: translateY(0);
}

/* Üzenetek */
.modul-message {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.modul-message.modul-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.modul-message.modul-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Letöltés gomb */
.modul-download-wrapper {
    text-align: center;
    margin: 30px 0;
}

.modul-download-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.modul-download-btn:hover {
    background: #219a52;
    color: #ffffff;
    transform: translateY(-2px);
}

.modul-download-btn:active {
    transform: translateY(0);
}

/* Checkbox */
.modul-checkbox-group {
    margin-bottom: 20px;
}

.modul-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.modul-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #3498db;
}

.modul-checkbox-text {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

.modul-checkbox-text a {
    color: #3498db;
    text-decoration: underline;
}

.modul-checkbox-text a:hover {
    color: #2980b9;
}

/* Reszponzív */
@media (max-width: 600px) {
    .modul-subscription-form {
        padding: 20px;
        margin: 0 15px;
    }
    
    .modul-form-group input[type="text"],
    .modul-form-group input[type="email"],
    .modul-form-group input[type="tel"] {
        font-size: 16px; /* Megakadályozza a zoom-ot iOS-en */
    }
}
