/* 1. ФОН И ГЕОМЕТРИЯ */
body, #login {
    background-color: #0b101a !important;
    background-image: 
        radial-gradient(at 0% 0%, rgba(30, 58, 138, 0.15) 0px, transparent 50%), 
        radial-gradient(at 100% 100%, rgba(30, 58, 138, 0.15) 0px, transparent 50%) !important;
    background-attachment: fixed !important;
}

body::before, body::after {
    content: "";
    position: fixed;
    width: 900px;
    height: 900px;
    border-radius: 40%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.03), transparent);
    z-index: 0;
    pointer-events: none;
}
body::before { top: -250px; right: -250px; transform: rotate(20deg); }
body::after { bottom: -350px; left: -300px; transform: rotate(-15deg); }

#login { background: transparent !important; z-index: 1; }

/* 2. БОЛЬШОЙ ЛОГОТИП (Работающий селектор) */
#login img {
    height: 150px !important;
    width: auto !important;
    margin: 0 auto 30px !important;
    display: block !important;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.2)) !important;
}

/* 3. СКРЫВАЕМ ТЕКСТ Welcome И НАЗВАНИЕ */
#login h1, header .title, header .logo span {
    display: none !important;
}

/* 4. ВАШИ ПОЛЯ ВВОДА (Оставляем стиль) */
#login input {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #e2e8f0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    height: 45px !important;
}

/* 5. ИСПРАВЛЯЕМ ЦВЕТ КРАСНОЙ ПЛАШКИ */
#login .wrong {
    background-color: #0888cc !important; /* Тот самый синий 0888ccff */
    background-image: none !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(8, 136, 204, 0.3) !important;
}

/* 6. КНОПКА И ШАПКА */
#login button, #login .button--main {
    background-color: #2563eb !important;
    border-radius: 8px !important;
    height: 45px !important;
}

header {
    background-color: rgba(11, 16, 26, 0.7) !important;
    backdrop-filter: blur(20px);
}
header img { height: 40px !important; }

/* ФЕЙКОВЫЙ ФУТЕР */
#login::after {
    content: "© 2026 SkyFolder Cloud Solutions. All rights reserved.";
    white-space: pre-wrap;
    display: block;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(226, 232, 240, 0.4);
    font-size: 12px;
    line-height: 1.8;
    z-index: 10;
}



