/*
Theme Name: Rockbase - Digital Creator
Theme URI: https://rockbase.co
Author: Rockbase LLC
Author URI: https://rockbase.co
Description: A starting point for your creative pursuits.
Requires at least: 6.3
Tested up to: 6.4
Requires PHP: 7.3
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Template: rockbase
Text Domain: rockbase-child
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, translation-ready, block-styles, template-editing, wide-blocks, global-styles
*/
/* Custom ActiveCampaign form */
.custom-ac-form .form-group {
    display: flex;
    align-items: center;
    max-width: 450px;
    margin: 0 auto;
    border: 4px solid #fff;
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
}

.custom-ac-form input[type="email"] {
    flex: 1;
    padding: 14px 16px;
    font-size: 18px;
    border: none;
    outline: none;
    background: transparent;
    min-width: 250px;
    box-sizing: border-box;
}

.custom-ac-form button {
    background-color: #e9674f;
    color: #fff;
    padding: 0 24px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    height: 50px;
    line-height: 50px;
}

.custom-ac-form button:hover {
    background-color: #d45640;
}

@media (max-width: 500px) {
    .custom-ac-form .form-group {
        max-width: 95%;
    }
    .custom-ac-form input[type="email"] {
        font-size: 16px;
        padding: 12px;
    }
    .custom-ac-form button {
        font-size: 16px;
        padding: 0 16px;
    }
}