.belka-auth-wrapper {
    max-width: 80%;
    margin: 40px auto;
    padding: 25px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 5px;
}
.auth-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}
.auth-tabs .tab-link {
    background: none;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    color: #555;
}
.auth-tabs .tab-link.active {
    border-bottom: 3px solid #0073aa;
    color: #000;
    font-weight: bold;
}
.auth-tab-content {
    display: none;
}
.auth-form p {
    margin-bottom: 15px;
}
.auth-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
}
.auth-form .input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}
.auth-form .button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    text-align: center;
}
.password-wrapper {
    position: relative;
}
.password-toggle-icon {
    position: absolute;
    top: 35px;
    right: 10px;
    cursor: pointer;
    user-select: none;
    font-style: normal;
}
.auth-error {
    color: #d9534f;
    background: #f2dede;
    border: 1px solid #ebccd1;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 20px;
}
.email-status {
    font-size: 12px;
    margin-top: 4px;
    display: block;
}
.email-status.error {
    color: #d9534f;
}
.email-status.success {
    color: #4caf50;
}
#password-strength-meter {
    width: 100%;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    margin-top: -5px;
}
#password-strength-bar {
    height: 100%;
    width: 0;
    border-radius: 4px;
    transition: width 0.3s, background-color 0.3s;
}
#password-strength-text {
    font-size: 12px;
    margin-top: 4px;
    display: block;
    text-align: right;
    height: 14px;
}
.strength-0, .strength-1 {
    background-color: #dc3545; /* red */
}
.strength-2 {
    background-color: #ffc107; /* orange */
}
.strength-3, .strength-4 {
    background-color: #28a745; /* green */
}

/* двухколоночная сетка в формах */
.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-row.two-cols p { margin-bottom: 0; }
@media (max-width: 767.98px) {
    .form-row.two-cols {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.login-forgot { margin: 8px 0 12px; text-align: right; }
.login-forgot a { text-decoration: underline; font-size: 14px; }

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px !important;
}
.form-row {
    background: transparent !important;
    padding: 10px !important;
    border-radius: 0 !important;
    display: flex;
    flex-flow: wrap;
    gap: 15px;
}

