/* Front-end Styles */
.bbac-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.bbac-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.bbac-signup-page h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.bbac-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.bbac-form-row input {
    flex: 1;
}

#bbac-signup-form input[type="text"],
#bbac-signup-form input[type="email"],
#bbac-signup-form input[type="password"] {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
    margin-bottom: 15px;
}

#bbac-signup-form input:focus {
    border-color: #0073aa;
    outline: none;
}

.bbac-access-toggles {
    display: flex;
    gap: 15px;
    margin: 20px 0 30px;
}

.bbac-toggle {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.bbac-toggle input {
    display: none;
}

.bbac-toggle span {
    display: block;
    padding: 15px;
    text-align: center;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.bbac-toggle input:checked + span {
    background: #0073aa;
    border-color: #0073aa;
    color: #ffffff;
}

.bbac-btn-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.bbac-btn-submit:hover {
    background: #218838;
}

.bbac-tip {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.bbac-error {
    background: #fee;
    color: #c00;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #fcc;
}

.bbac-success {
    background: #efe;
    color: #080;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #cfc;
}

/* Restricted Content Styling */
.bbac-teaser-box {
    transition: transform 0.3s;
}

.bbac-teaser-box:hover {
    transform: translateY(-5px);
}

.bbac-restricted-content-unlocked {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
