/*
Theme Name: Astra Child
Theme URI: http://yourwebsite.com/
Description: A custom child theme for the Astra WordPress theme.
Author: Your Name
Author URI: http://yourwebsite.com/
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
*/

/* Add your custom CSS styles below this line */

/* Custom Styles for isofp_member_verification Shortcode */

/* Adds space below the search bar */
.isofp-verification-form input[type="text"]#q {
    margin-bottom: 15px; /* Adjust this value (e.g., 10px, 20px) for more or less space */
    width: 100%; /* Optional: Makes the search bar full width */
    box-sizing: border-box; /* Ensures padding/border don't affect total width */
}

/* Changes the button color to red and ensures visibility */
.isofp-verification-form button#verify {
    background-color: #C0392B; /* A common, dark red color (You can change this hex code) */
    color: #ffffff; /* Sets text color to white for contrast */
    border: 1px solid #A93226; /* Darker border for depth */
    transition: background-color 0.3s ease; /* Smooth color transition on hover */
}

/* Optional: Make the button darken slightly on hover */
.isofp-verification-form button#verify:hover {
    background-color: #A93226;
}