﻿.login-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.login-card h1 {
    color: #0b3c6d;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* FORM */
.login-form {
    text-align: left;
}

.btn-logout {
    background: #e74c3c;
    color: #fff;
}

.btn-logout:hover {
    background: #c0392b;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #0b3c6d;
}

/* BUTTON */
.btn {
    background: #f9b233;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
}

.btn-large {
    padding: 12px;
    width: 100%;
    margin-top: 10px;
}
/* FIX для CKEditor */
.ck-content {
    font-weight: normal;
}

.ck-content ul {
    list-style-type: disc !important;
    margin-left: 24px !important;
    padding-left: 24px !important;
}

.ck-content ol {
    list-style-type: decimal !important;
    margin-left: 24px !important;
    padding-left: 24px !important;
}

.ck-content li {
    display: list-item !important;
}
.ck-content u,
.ck-content span[style*="text-decoration"] {
    text-decoration: underline !important;
}
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }
}