/**
 * Estilos Frontend - Guest Activation
 */

.mad-guest-activation-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.mad-activation-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mad-activation-container h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.mad-form .form-description {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

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

.mad-form .form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.mad-form .form-field .required {
    color: #e74c3c;
}

.mad-form .form-field input[type="email"],
.mad-form .form-field input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.mad-form .form-field input:focus {
    outline: none;
    border-color: #0073aa;
}

.mad-form .form-actions {
    text-align: center;
    margin-top: 25px;
}

.mad-form .mad-submit-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.mad-form .mad-submit-btn:hover {
    background: #005a87;
}

.mad-loading {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.mad-loading .spinner {
    float: none;
    margin: 0 10px 0 0;
}

.mad-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

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

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

.mad-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.mad-guest-activation-error {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    text-align: center;
}

/* Botón en "Mis pedidos" */
.mad-find-orders-container {
    margin: 20px 0;
    padding: 20px;
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.mad-find-orders-container .button {
    display: inline-block;
}

#mad-find-orders-message {
    margin-top: 15px;
}

#mad-find-orders-message.success {
    padding: 10px 15px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
}

#mad-find-orders-message.info {
    padding: 10px 15px;
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    border-radius: 4px;
}

#mad-find-orders-message.error {
    padding: 10px 15px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 600px) {
    .mad-guest-activation-form {
        padding: 10px;
    }

    .mad-activation-container {
        padding: 20px;
    }

    .mad-activation-container h3 {
        font-size: 20px;
    }
}
