body {
    background-color: #f8fafc;
}
.logo {
    display: flex;
    justify-content: center;
    height: 100px;
}
.home-page {
    max-width: 1090px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #f8fafc;
}
.cabinet-logo {
    display: flex;
    justify-content: center;
    height: 140px;
}

.navbar-toggler {
    border: none;
}

.nav-link {
    font-weight: 500;
}

.nav-link.active {
    color: orange !important;
    font-weight: 700;
}
.navbar {
    padding: 0;
}
.collapse.show {
    display: block !important;
}

.profile {
    max-width: 1090px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Стили для уведомления */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast-notification {
    background: #4f46e5; /* indigo-600 */
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-notification.fade-out {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.animate-fade-in { animation: fadeIn 0.6s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 568px) {
    .header-line {
        gap: 5px !important;
    }

    .home-page__form {
        width: 315px;
    }
    .logo {
        max-width: 100%;
        height: auto;
    }
    .cabinet-logo {
        max-width: 100%;
        height: auto;
    }
    .auth-btns a{
        width: 100%;
    }
    .partner-logo {
        max-width: 200px;
    }
    .partner-logo-a {
        width: 160px;
    }
    .home-page {
        max-width: 100%;
    }
    .settings {
        height: auto !important;
    }
    .promo-wrapper {
        max-width: 420px;
    }
}
