/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Global
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
h1.entry-title.blpro-locked-title {
    text-align: center;
    margin-top: 40px !important;
}

.bplock-login-form-container-wrapper {
    max-width: 750px !important;
    margin: auto;
    padding: 0 15px !important;
}

.bplock-locked-message,
.bplock-custom-content {
    background: #fff;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    padding: 15px !important;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-align: center;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
}

.bplock-login-form-container {
    margin: 40px auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Tab navigation */
.bplock-login-shortcode-tabs {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.bplock-login-shortcode-tabs li {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: background 0.3s, color 0.3s;
}

.bplock-login-shortcode-tabs li.current {
    background: #ffffff;
    color: #333;
    border-bottom: 2px solid #007BFF;
}

.bplock-login-shortcode-tabs li:hover {
    background: #e9e9e9;
}

/* Tab content */
.bplock-login-form-container .tab-content {
    padding: 20px;
    display: none;
}

.bplock-login-form-container .tab-content.current {
    display: block;
}

/* Form messages */
.isa_info,
.isa_success,
.isa_warning,
.isa_error {
    margin: 5px 0px 15px;
}

.isa_info {
    color: #00529B;
    background-color: #BDE5F8;
}

.isa_success {
    color: #4F8A10;
    background-color: #DFF2BF;
}

.isa_warning {
    color: #9F6000;
    background-color: #FEEFB3;
}

.isa_error {
    color: #D8000C;
    background-color: #FFBABA;
}

.isa_info i,
.isa_success i,
.isa_warning i,
.isa_error i {
    margin: 0 8px 0px 0;
    font-size: 1.6em;
    vertical-align: middle;
}

.bplock-message {
    display: none;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
}

#bplock-login-success,
#bplock-register-success {
    background: #d4edda;
    color: #155724;
    display: none;
}

#bplock-login-error,
#bplock-register-error {
    background: #f8d7da;
    color: #721c24;
}

#bplock-login-details-empty,
#bplock-register-details-empty {
    background: #fff3cd;
    color: #856404;
    display: none;
}

/* Form groups */
.bplock-formgroup {
    margin-bottom: 20px;
}

.bplock-formgroup label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.bplock-formgroup input {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.bplock-login-form-container input[id],
.bplock-login-form-container button {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #d1d4d6;
    border-radius: 6px;
    transition: border-color .3s,box-shadow .3s;
}

.bplock-formgroup input:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    outline: none;
}

/* Buttons */
.bplock-btn-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bplock-btn-section button {
    flex: 1 1 auto;
    background: #007BFF;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.bplock-btn-section button:hover {
    background: #0056b3;
    border: none;
    transform: translateY(-1px);
}

.bplock-btn-section a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.bplock-btn-section a:hover {
    color: #0056b3;
}

/* Switch form text */
.bplock-switch-form {
    margin: 0;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.bplock-switch-form a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
}

.bplock-switch-form a:hover {
    text-decoration: underline;
}

/* Font Awesome icons alignment */
.bplock-login-shortcode-tabs i,
.bplock-message i {
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 480px) {
    .bplock-btn-section {
        flex-direction: column;
    }

    .bplock-btn-section button {
        width: 100%;
    }

    .bplock-btn-section a {
        width: 100%;
        text-align: center;
        padding: 10px 0 0;
    }
}