/* Auth page – single form layout */
.bota-auth-page {
    padding: 32px 0 56px;
    background: #eef2f6;
}
.bota-auth-page--single .container {
    max-width: 520px;
}
.bota-auth-page .v2-login,
.bota-auth-page .v2-reg {
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
}
.bota-auth-panel--single {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15, 35, 52, 0.08);
    border: 1px solid #e3e8ef;
    overflow: hidden;
}
.bota-auth-section {
    padding: 40px 44px;
}
.bota-auth-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf0f4;
    text-align: center;
}
.bota-auth-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 22px;
    color: #fff;
}
.bota-auth-section--register .bota-auth-icon {
    background: linear-gradient(135deg, #02aff1 0%, #0090cc 100%);
}
.bota-auth-section--login .bota-auth-icon {
    background: linear-gradient(135deg, #02aff1 0%, #0090cc 100%);
}
.bota-auth-title {
    color: #1a2b3c;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: none;
}
.bota-auth-desc {
    color: #6b7c8f;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}
.bota-auth-field {
    display: block !important;
    width: 100% !important;
    margin-bottom: 18px;
    float: none !important;
}
.bota-auth-field:last-child {
    margin-bottom: 0;
}
.bota-auth-field .form-control {
    display: block;
    width: 100% !important;
    height: 48px;
    padding: 12px 16px;
    border: 1px solid #d8dee6;
    border-radius: 8px;
    font-size: 14px;
    color: #1a2b3c;
    background: #fff;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.bota-auth-field .form-control::placeholder {
    color: #9aa8b8;
}
.bota-auth-field .form-control:focus {
    border-color: #02aff1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 175, 241, 0.15);
}
.bota-auth-field .warning {
    display: block;
    margin-top: 6px;
    font-size: 13px;
}
.bota-auth-field .warning span {
    color: #e74c3c;
}
.bota-auth-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4a5b6c;
    margin-bottom: 8px;
}
.bota-auth-captcha {
    margin-top: 18px;
}
.bota-auth-captcha-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.bota-auth-captcha-row .form-control {
    flex: 1;
    min-width: 0;
    height: 48px;
}
.bota-auth-captcha-img {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.bota-auth-captcha-img img {
    height: 48px;
    min-width: 110px;
    border: 1px solid #d8dee6;
    border-radius: 8px;
    background: #f5f7fa;
    object-fit: contain;
}
.bota-auth-captcha-refresh {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #d8dee6;
    border-radius: 8px;
    background: #fff;
    color: #02aff1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.bota-auth-captcha-refresh:hover {
    background: #eef9fe;
    border-color: #02aff1;
}
.bota-auth-actions {
    margin-top: 28px;
}
.bota-auth-forgot {
    display: block;
    color: #02aff1;
    font-size: 14px;
    text-decoration: none;
    text-align: right;
    margin-bottom: 16px;
}
.bota-auth-forgot:hover {
    color: #0090cc;
    text-decoration: underline;
}
.bota-auth-btn {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.bota-auth-btn:hover {
    transform: translateY(-1px);
}
.bota-auth-btn--register,
.bota-auth-btn--login {
    background: linear-gradient(135deg, #02aff1 0%, #0090cc 100%);
    color: #fff;
}
.bota-auth-btn--register:hover,
.bota-auth-btn--login:hover {
    background: linear-gradient(135deg, #009ee0 0%, #007db8 100%);
    color: #fff;
}
.bota-auth-switch {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid #edf0f4;
    text-align: center;
    font-size: 14px;
    color: #6b7c8f;
}
.bota-auth-switch a {
    color: #02aff1;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}
.bota-auth-switch a:hover {
    text-decoration: underline;
}
.bota-auth-alert {
    margin-bottom: 20px;
    border-radius: 8px;
}
@media (max-width: 575px) {
    .bota-auth-page {
        padding: 20px 0 40px;
    }
    .bota-auth-section {
        padding: 28px 22px;
    }
    .bota-auth-captcha-row {
        flex-wrap: wrap;
    }
    .bota-auth-captcha-row .form-control {
        width: 100%;
        flex: none;
    }
}
