.bmc-auth-container {
    max-width: 650px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Space Grotesk', sans-serif;
}

.bmc-auth-container h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.bmc-auth-group {
    margin-bottom: 20px;
}

.bmc-auth-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.bmc-auth-group input,
.bmc-auth-group select,
.bmc-auth-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
    font-family: inherit;
}

.bmc-auth-group input:focus,
.bmc-auth-group select:focus,
.bmc-auth-group textarea:focus {
    border-color: #FF4E00;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 78, 0, 0.1);
}

.bmc-auth-btn {
    width: 100%;
    padding: 14px;
    background: #FF4E00;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.bmc-auth-btn:hover {
    background: #e64600;
}

.bmc-auth-error {
    background: #fee;
    color: #c00;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #fcc;
}

.bmc-auth-success {
    background: #efe;
    color: #080;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #cfc;
}

.bmc-auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

.bmc-auth-switch a {
    color: #FF4E00;
    font-weight: 600;
    text-decoration: none;
}

.bmc-hidden {
    display: none !important;
}

.bmc-role-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.bmc-role-selector label {
    flex: 1;
    text-align: center;
    padding: 15px;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.2s;
    user-select: none;
}

.bmc-role-selector input {
    display: none;
}

.bmc-role-selector input:checked+label {
    border-color: #FF4E00;
    background: rgba(255, 78, 0, 0.05);
    color: #FF4E00;
}

.bmc-role-selector label i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

/* Profile Tabs */
.bmc-profile-tabs {
    display: flex;
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 25px;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
}

.bmc-profile-tabs::-webkit-scrollbar {
    display: none;
}

.bmc-tablink {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.bmc-tablink:hover {
    color: #333;
}

.bmc-tablink.active {
    color: #FF4E00;
    border-bottom-color: #FF4E00;
}

.bmc-tabcontent {
    display: none;
    animation: bmcFadeIn 0.4s;
}

@keyframes bmcFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bookings / Properties Table */
.bmc-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.95rem;
}

.bmc-table th,
.bmc-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.bmc-table th {
    background: #f9f9f9;
    font-weight: 600;
    color: #444;
}

.bmc-status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bmc-status-completed {
    background: #e6f7eb;
    color: #1e8e3e;
}

.bmc-status-processing {
    background: #eef2ff;
    color: #3b82f6;
}

.bmc-status-cancelled {
    background: #fde8e8;
    color: #c81e1e;
}