/* ===== ФОН ===== */
body {
    background: #f5f5f5 !important;
}

/* ===== HEADER ===== */
.header {
    background: white !important;
    border-bottom: 2px solid #f28c00 !important;
}

/* ===== ЛОГО ===== */
.logo {
    background-image: url('../logo.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

/* скрываем Apache Guacamole */
.logo-text {
    display: none !important;
}

/* ===== НАЗВАНИЕ ===== */

/* скрываем оригинальный текст */
.login-ui .title {
    color: transparent !important;
    position: relative;
}

/* убиваем возможные вложенные span */
.login-ui .title * {
    display: none !important;
}

/* вставляем свой текст */
.login-ui .title::after {
    content: "LBR 1С";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;

    font-size: 26px;
    font-weight: bold;
    color: #f28c00;
}

/* ===== КАРТОЧКА ЛОГИНА ===== */
.login-ui {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

/* ===== КНОПКИ ===== */
button,
input[type="submit"] {
    background-color: #f28c00 !important;
    border: none !important;
    border-radius: 8px !important;
    color: white !important;
}

/* hover */
button:hover {
    background-color: #d97706 !important;
}

/* ===== ПОЛЯ ===== */
input {
    background: #ffffff !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    color: #333 !important;
}

/* ===== МЕНЮ ===== */
.menu {
    background: #ffffff !important;
}

/* ===== АКЦЕНТЫ ===== */
a {
    color: #f28c00 !important;
}