/* Main Container */
.bcc-signup-container {
    padding: 20px;
    box-sizing: border-box;
    font-family: inherit; /* Inherit from theme */
    color: #fff;
    max-width: 100%;
}

.bcc-signup-container.vertical {
    border-radius: 4px; /* Slight rounding */
    /* Add subtle shadow if desired */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bcc-signup-container.horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap; /* responsive */
}

/* Typography */
.bcc-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.bcc-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Form Elements */
.bcc-signup-form {
    width: 100%;
}

.bcc-field-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.vertical .bcc-field-row {
    flex-direction: column;
}

.horizontal .bcc-field-row {
    flex-direction: row;
    align-items: center;
}

.bcc-input {
    padding: 12px 15px;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    color: #333;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.bcc-input::placeholder {
    color: #888;
}

.bcc-submit-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; /* Full width on mobile/vertical */
    white-space: nowrap;
}

.horizontal .bcc-submit-btn {
    width: auto;
}

.bcc-message {
    margin-top: 10px;
    font-size: 14px;
    display: none; /* Hidden by default */
}

.bcc-message.success {
    color: #4CAF50; /* Green */
    display: block;
}

.bcc-message.error {
    color: #f44336; /* Red error text on top of blue bg might be hard to read, maybe orange? */
    color: #ffcc00; 
    display: block;
}

/* Mobile Responsiveness for Horizontal Layout */
@media (max-width: 768px) {
    .bcc-signup-container.horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    .horizontal .bcc-field-row {
        flex-direction: column;
    }
    .horizontal .bcc-submit-btn {
        width: 100%;
    }
}
