/* ===== BN24 Premium Login & Registration Style ===== */

#bn24-login-register-container {
    max-width: 400px;
    margin: 40px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
    padding: 30px 35px;
    color: #222;
}

.bn24-tab-nav {
    list-style: none;
    display: flex;
    margin: 0 0 25px 0;
    padding: 0;
    border-bottom: 3px solid #007bff;
    cursor: pointer;
}

.bn24-tab-nav li {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-weight: 700;
    font-size: 1.2rem;
    color: #007bff;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    user-select: none;
}

.bn24-tab-nav li.active {
    border-bottom-color: #0056b3;
    color: #0056b3;
}

.bn24-tab-content {
    display: none;
}

.bn24-tab-content.active {
    display: block;
}

.bn24-form-group {
    margin-bottom: 20px;
}

.bn24-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}

.bn24-form-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1.8px solid #ccc;
    font-size: 1rem;
    transition: border-color 0.25s ease;
    outline-offset: 2px;
    font-family: inherit;
}

.bn24-form-group input:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgb(0 123 255 / 0.5);
}

.bn24-btn {
    width: 100%;
    background: #007bff;
    border: none;
    padding: 14px 0;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
    box-shadow: 0 6px 14px rgb(0 123 255 / 0.6);
}

.bn24-btn:hover {
    background: #0056b3;
}

.bn24-message {
    margin-top: 15px;
    font-weight: 600;
    color: #dc3545;
    min-height: 24px;
}

.bn24-welcome-box {
    max-width: 400px;
    margin: 50px auto;
    text-align: center;
    padding: 35px 30px;
    background: #d4edda;
    border-radius: 14px;
    color: #155724;
    box-shadow: 0 6px 20px rgb(21 87 36 / 0.2);
}

.bn24-logout-btn {
    display: inline-block;
    margin-top: 20px;
    background: #dc3545;
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgb(220 53 69 / 0.8);
    transition: background-color 0.3s ease;
}

.bn24-logout-btn:hover {
    background: #a71d2a;
}

/* Responsive */
@media(max-width:450px) {
    #bn24-login-register-container {
        width: 95%;
        padding: 25px 20px;
    }
}