/* GetResponse Form Plugin Styles */

.gr-form-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gr-form {
    width: 100%;
}

.gr-form-group {
    margin-bottom: 20px;
}

.gr-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.gr-form-group label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.gr-form-group input[type="text"],
.gr-form-group input[type="email"],
.gr-form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.gr-form-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.gr-form-submit {
    width: 100%;
    padding: 14px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gr-form-submit:hover {
    background-color: #2980b9;
}

.gr-form-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.gr-form-message {
    padding: 12px 15px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 14px;
}

.gr-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.gr-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 600px) {
    .gr-form-container {
        margin: 10px;
        padding: 15px;
    }
}