/**
 * Stili CSS per la parte pubblica
 *
 * @package WP_Mail_Manager
 */

/* Form di contatto */
.wpmail-form-container {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    padding: 25px;
}

.wpmail-form {
    max-width: 100%;
}

.wpmail-form-field {
    margin-bottom: 20px;
}

.wpmail-form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.wpmail-form-field label .required {
    color: #dc3232;
}

.wpmail-form-field input[type="text"],
.wpmail-form-field input[type="email"],
.wpmail-form-field textarea {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
}

.wpmail-form-field textarea {
    height: 150px;
    resize: vertical;
}

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

.wpmail-form-submit {
    text-align: left;
}

button.wpmail-submit {
    background-color: #0073aa;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    text-align: center;
    transition: background-color 0.2s ease;
}

button.wpmail-submit:hover {
    background-color: #005f8a;
}

/* Messaggi */
.wpmail-form-messages {
    margin-top: 20px;
}

.wpmail-form-success,
.wpmail-form-error {
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 12px 15px;
}

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

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

.wpmail-form-loading {
    align-items: center;
    display: flex;
}

.wpmail-spinner {
    animation: wpmail-spin 1s linear infinite;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #0073aa;
    display: inline-block;
    height: 20px;
    margin-right: 10px;
    width: 20px;
}

.wpmail-loading-text {
    color: #666;
}

@keyframes wpmail-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form di disiscrizione */
.wpmail-unsubscribe-container {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    padding: 25px;
    text-align: center;
}

.wpmail-unsubscribe-container h2 {
    color: #333;
    margin-top: 0;
}

.wpmail-unsubscribe-container p {
    color: #666;
    margin-bottom: 20px;
}

.wpmail-unsubscribe-form {
    max-width: 400px;
    margin: 0 auto;
}

/* Template */
.wpmail-template {
    max-width: 100%;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .wpmail-form-container,
    .wpmail-unsubscribe-container {
        padding: 20px 15px;
    }
    
    button.wpmail-submit {
        padding: 8px 16px;
        font-size: 14px;
        width: 100%;
    }
} 