/* APC Newsletter - Frontend Styles */
.apc-signup-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    max-width: 450px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-family: 'Helvetica', sans-serif;
}
.apc-signup-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}
.apc-input-group {
    margin-bottom: 15px;
}
.apc-input-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}
.apc-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.apc-submit-btn:hover {
    background-color: #34495e;
}
.apc-footer-note {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 10px;
}