/*
 Theme Name: SBF
 Theme URI: https://scuttlebutt.farm
 Description: A custom child theme for Blocksy.
 Author: Mark Carroll
 Author URI: https://scuttlebutt.farm
 Template: blocksy
 Version: 1.0.0
 */
/* Style for the main content area on the Learn page */
.page-template-page-learning-form .entry-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px !important;
}

/* General form styling for readability */
.learning-form-container form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.learning-form-container label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.learning-form-container input[type="text"],
.learning-form-container input[type="email"],
.learning-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding is included in the element's total width */
}

/* Style for the submit button */
.learning-form-container input[type="submit"] {
    background-color: #337ab7; /* A neutral blue */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.learning-form-container input[type="submit"]:hover {
    background-color: #286090;
}