#bs-content {
    background: #050d17;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1000;
}

@keyframes slideIn {
    from { opacity: 0; transform: translate(-50%, -45%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

#bs-content-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

#bs-form-${formName} h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 7px solid #13347f;
    text-transform: uppercase;
    letter-spacing: 1px;
}
div#bs-content-form h2 {
    display: flex;
    align-items: center;
}

div#bs-content-form h2>img {
    margin-right: 6px;
}

.bsf-titu {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-label {
    display: block;
    color: #e1e1e1;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.form-label.required::after {
    content: ' *';
    color: #e74c3c;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    background: #f9f9f9;
    box-sizing: border-box;
    max-width: 320px;
}

.form-input:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

select.form-input {
    cursor: pointer;
    background: #f9f9f9 url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat;
    background-position: calc(100% - 12px) center;
    background-size: 20px;
    appearance: none;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 520px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-help {
    color: #95a5a6;
    font-size: 12px;
    margin-top: 5px;
    font-style: italic;
}

.form-error {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 20px;
    padding: 10px;
    background: #fee;
    border-radius: 4px;
    text-align: center;
}

.btn-submit {
    background: linear-gradient(135deg, #272591, #0400b1);
    color: white;
    border: none;
    padding: 10px 4px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    width: 144px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgb(15 87 23 / 30%);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(0 0 0 / 40%);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    box-shadow: none;
}

#pLogOut {
    text-align: center;
    padding: 20px;
    margin: 0;
    background: #000000;
}

#pLogOut a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
    background: #ffffff;
    padding: 10px;
    border-radius: 4px;
}
#pLogOut a:hover {
    border-radius: 9px;
    color: #e4508a;
}

/* Overlay */
#formsup::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

#bs-content::-webkit-scrollbar {
    width: 8px;
}

#bs-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#bs-content::-webkit-scrollbar-thumb {
    background: #bdc3c7;
    border-radius: 10px;
}

#bs-content::-webkit-scrollbar-thumb:hover {
    background: #95a5a6;
}
