/* ===== Login Page Styles ===== */

/* Header */
.login-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
}

.login-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 20px;
}

.login-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

.login-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
}

.login-logo .logo-text {
    color: var(--text-primary);
}

.login-logo .logo-text span {
    color: var(--primary);
}

.login-nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
    color: var(--text-primary);
}

.language-switcher:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.current-language {
    font-size: 14px;
    font-weight: 600;
}

/* Показываем текст языка на мобильных */
@media (max-width: 768px) {
    .language-switcher {
        padding: 8px 12px;
    }

    .current-language {
        display: inline-block !important;
        font-size: 13px;
    }
}

/* Main Auth Section */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    min-height: 700px;
}

@media (max-width: 992px) {
    .auth-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        min-height: auto;
    }
}

/* ===== Graphic Side ===== */
.auth-graphic {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-dark) 100%);
    padding: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.graphic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.graphic-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Главный заголовок */
.graphic-main-title {
    margin-bottom: 50px;
}

.graphic-main-title h1 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 15px;
}

.highlight {
    color: #ffd700;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
    border-radius: 2px;
}

/* Карточки преимуществ */
.graphic-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 700;
}

.benefit-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* Статистика */
.graphic-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Иконки фич */
.graphic-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    min-width: 100px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 24px;
    color: var(--white);
}

.feature-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: center;
}

/* Forms Side */
.auth-forms {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .auth-forms {
        padding: 30px 20px;
    }
}

.forms-container {
    flex: 1;
}

/* Tabs */
.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.auth-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.auth-tab i {
    font-size: 18px;
}

.auth-tab:hover {
    color: var(--primary);
    background: var(--bg-tertiary);
}

.auth-tab.active {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

/* Forms */
.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.form-header {
    margin-bottom: 30px;
    position: relative;
}

.form-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Social Auth */
.social-auth {
    margin-bottom: 30px;
}

.social-auth h4 {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.social-btn i {
    font-size: 18px;
}

.social-btn.vk:hover {
    background: #4c75a3;
    border-color: #4c75a3;
    color: var(--white);
}

.social-btn.google:hover {
    background: #4285f4;
    border-color: #4285f4;
    color: var(--white);
}

.social-btn.yandex:hover {
    background: #ffcc00;
    border-color: #ffcc00;
    color: var(--text-primary);
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: var(--text-tertiary);
    font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    padding: 0 15px;
}

/* Email Forms */
.email-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group label i {
    color: var(--primary);
    font-size: 16px;
    width: 16px;
    text-align: center;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder {
    color: var(--text-tertiary);
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.forgot-password {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 50px;
}

.show-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 5px;
    transition: color var(--transition-fast);
}

.show-password:hover {
    color: var(--primary);
}

/* Индикатор надежности пароля */
.password-strength {
    margin-top: 12px;
}

.strength-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: right;
}

/* Цвета для разной силы пароля */
.password-strength.weak .strength-fill {
    background: var(--danger);
    width: 33%;
}

.password-strength.medium .strength-fill {
    background: var(--warning);
    width: 66%;
}

.password-strength.strong .strength-fill {
    background: var(--success);
    width: 100%;
}

.password-strength.weak .strength-text {
    color: var(--danger);
}

.password-strength.medium .strength-text {
    color: var(--warning);
}

.password-strength.strong .strength-text {
    color: var(--success);
}

.form-hint {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 8px;
    line-height: 1.4;
}

/* Checkbox */
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.checkbox input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

.checkbox input:checked ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox input:checked ~ .checkmark::after {
    display: block;
}

.checkbox a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    position: relative;
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all var(--transition-normal);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    font-size: 18px;
}

.btn-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.loader-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    border-top-color: var(--white);
    animation: spin 1s linear infinite;
}

/* Form Footer */
.form-footer {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    margin-top: 30px;
}

.form-footer p {
    color: var(--text-secondary);
    font-size: 14px;
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.form-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Benefits */
.auth-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.benefit-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.success-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-2xl);
    animation: modalIn 0.3s ease;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
}

.modal-icon.success {
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    color: var(--white);
}

.modal-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.modal-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-button {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .graphic-main-title h1 {
        font-size: 32px;
    }

    .benefit-card {
        padding: 15px;
    }

    .graphic-stats {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .auth-graphic {
        padding: 40px;
        min-height: 500px;
    }

    .graphic-main-title h1 {
        font-size: 28px;
    }

    .benefit-text h3 {
        font-size: 16px;
    }

    .benefit-text p {
        font-size: 13px;
    }

    .stat-number {
        font-size: 24px;
    }

    .feature-item {
        min-width: 80px;
        padding: 12px;
    }

    .feature-item i {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .auth-graphic {
        padding: 30px;
        min-height: 400px;
    }

    .graphic-main-title {
        margin-bottom: 30px;
    }

    .graphic-main-title h1 {
        font-size: 24px;
    }

    .graphic-benefits {
        margin-bottom: 30px;
        gap: 15px;
    }

    .benefit-card {
        padding: 12px;
        gap: 15px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .graphic-stats {
        margin-bottom: 30px;
        padding: 15px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }

    .graphic-features {
        margin-bottom: 20px;
    }

    .auth-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .auth-graphic {
        min-height: 350px;
    }

    .graphic-main-title h1 {
        font-size: 22px;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .graphic-stats {
        flex-direction: column;
        gap: 15px;
    }

    .graphic-features {
        justify-content: center;
    }
}

/* ===== Error Messages Styling ===== */
.error-message {
    display: none;
    margin-top: 8px;
    padding: 10px 15px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    border-radius: var(--radius-md);
    color: var(--danger);
    font-size: 13px;
    font-weight: 500;
    animation: shake 0.5s ease;
}

.error-message.show {
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-message::before {
    content: '⚠️';
    font-size: 14px;
}

/* Анимация для ошибок */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ===== Disabled Button State ===== */
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ===== Social Buttons - убираем подчеркивание ===== */
.social-btn {
    text-decoration: none !important;
}

.social-btn:hover {
    text-decoration: none !important;
}

.social-btn span {
    text-decoration: none;
}

/* ===== Terms Checkbox State ===== */
.checkbox input:disabled ~ .checkmark {
    background: var(--gray-200);
    border-color: var(--gray-300);
    cursor: not-allowed;
}

/* ===== Password Strength Animation ===== */
.password-strength {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.password-strength.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Field Focus States ===== */
.form-group input.error {
    border-color: var(--danger);
    background: rgba(239, 68, 68, 0.02);
}

.form-group input.error:focus {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

/* ===== Success Modal Enhancements ===== */
.modal-content {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ===== Notification Styles ===== */
.auth-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    max-width: 400px;
    width: calc(100% - 40px);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    border-left: 4px solid;
}

.auth-notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: var(--success);
}

.notification-success i {
    color: var(--success);
}

.notification-error {
    border-left-color: var(--danger);
}

.notification-error i {
    color: var(--danger);
}

.notification-warning {
    border-left-color: var(--warning);
}

.notification-warning i {
    color: var(--warning);
}

.notification-info {
    border-left-color: var(--primary);
}

.notification-info i {
    color: var(--primary);
}

.notification-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: var(--text-primary);
}

/* ===== Loading State for Social Buttons ===== */
.social-btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.social-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: currentColor;
    animation: spin 1s linear infinite;
    right: 20px;
}

/* ===== Responsive Fixes ===== */
@media (max-width: 480px) {
    .error-message {
        font-size: 12px;
        padding: 8px 12px;
    }

    .auth-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }

    .social-btn.loading::after {
        width: 16px;
        height: 16px;
        right: 15px;
    }
}

/* ===== Print Styles ===== */
@media print {
    .auth-section {
        background: none;
    }

    .auth-graphic,
    .social-auth,
    .btn-submit,
    .error-message,
    .auth-notification {
        display: none !important;
    }

    .auth-forms {
        width: 100%;
    }

    .auth-form.active {
        display: block;
    }
}