

/* Start:/auth/style.css?17897329024198*/
.auth-wrapper { display: flex; justify-content: center; align-items: center; padding: 40px 15px; min-height: 70vh; }
.auth-card { background: #ffffff; width: 100%; max-width: 460px; padding: 36px 32px; border-radius: 20px; border: 1px solid #e5e7eb; box-shadow: 0 12px 32px rgba(31, 41, 119, 0.06); }
.auth-step { display: none; animation: fadeIn 0.25s ease-in-out; }
.auth-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.auth-title { margin: 0 0 6px 0; font-size: 22px; font-weight: 700; color: #111827; }
.auth-subtitle { color: #6b7280; font-size: 14px; margin-bottom: 20px; line-height: 1.45; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: #374151; margin-bottom: 6px; font-weight: 500; }
.auth-input { width: 100%; padding: 12px 14px; border: 1px solid #d1d5db; border-radius: 10px; font-size: 15px; box-sizing: border-box; transition: 0.2s; font-variant-numeric: tabular-nums; }
.auth-input:focus { outline: none; border-color: #006CDC; box-shadow: 0 0 0 3px rgba(0,108,220,0.1); }
.form-row { display: flex; gap: 12px; } .form-row .col { flex: 1; }
.btn-main-action { width: 100%; padding: 14px; background: #006CDC; color: #ffffff; border: none; border-radius: 10px; font-weight: 600; font-size: 15px; cursor: pointer; transition: 0.2s; }
.btn-main-action:hover { opacity: 0.95; } .btn-main-action:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-back { background: none; border: none; color: #6b7280; cursor: pointer; padding: 0; margin-bottom: 16px; font-weight: 500; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; transition: 0.15s; }
.btn-back:hover { color: #006CDC; }
.auth-links { margin-top: 16px; text-align: center; } .auth-links a { color: #006CDC; font-size: 13px; text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
.auth-links a:hover { text-decoration: underline; }
.captcha-box { background: #f8fafc; padding: 14px; border-radius: 10px; border: 1px dashed #cbd5e1; }
.mt-1 { margin-top: 6px; } .mt-3 { margin-top: 14px; } .text-center { text-align: center; }

/* ТАБЫ ПЕРЕКЛЮЧЕНИЯ РЕЖИМОВ */
.auth-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 10px;
    gap: 6px;
    margin-bottom: 12px;
}
.tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.tab-btn.active {
    background: #ffffff;
    color: #006CDC;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.auth-help-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
    line-height: 1.4;
}
.auth-help-box a {
    color: #006CDC;
    font-weight: 700;
    text-decoration: none;
}

/* TOAST-УВЕДОМЛЕНИЯ В АВТОРИЗАЦИИ */
#auth-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.auth-toast {
    min-width: 300px;
    max-width: 420px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.12), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}
.auth-toast.show {
    transform: translateX(0);
    opacity: 1;
}
.auth-toast-icon {
    font-size: 18px;
    flex-shrink: 0;
}
.auth-toast-icon.error { color: #ef4444; }
.auth-toast-icon.success { color: #10b981; }
.auth-toast-icon.info { color: #0284c7; }
.auth-toast-text {
    font-size: 13px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.4;
}
/* End */
/* /auth/style.css?17897329024198 */
