/* Front-end styles for BBF Custom Form Builder */

.bbf-cfb-form-wrapper {
    border: 1px solid var(--primary-color);
    padding: 20px;
    background-color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
.bbf-cfb-title {
    color: var(--primary-color);
    margin-bottom: 10px;
}
.bbf-cfb-terms {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    padding: 15px;
    max-height: 500px; /* increased height for longer agreements */
    overflow-y: auto;
    margin-bottom: 20px;
}
.bbf-cfb-field {
    margin-bottom: 15px;
}
.bbf-cfb-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.bbf-cfb-field input[type="text"],
.bbf-cfb-field input[type="email"],
.bbf-cfb-field input[type="date"],
.bbf-cfb-field input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.bbf-cfb-clear.button {
    margin-top: 5px;
}
.bbf-cfb-submit.button {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.bbf-cfb-submit.button:hover {
    opacity: 0.9;
}
.bbf-cfb-message {
    margin-top: 15px;
    font-weight: bold;
}