
/* ========== АВТОРИЗАЦИЯ И ВХОД В СИСТЕМУ ========== */
.login-container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo-container {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
    text-align: center;
}

.subtitle {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 24px;
    text-align: center;
    font-weight: normal;
}

.description {
    color: #6b7280;
    margin-bottom: 32px;
    text-align: center;
}

.login-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 32px;
    width: 100%;
}

#login-form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

input[type="email"],
input[type="password"], input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    outline: none;
}

input[type="email"]:focus,
input[type="password"]:focus, input[type="text"]:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

input[type="checkbox"] {
    height: 16px;
    width: 16px;
    color: #3b82f6;
    cursor: pointer;
}

.form-check label {
    margin-left: 8px;
    font-size: 14px;
    color: #4b5563;
}

.form-check a {
    color: #3b82f6;
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    background-color: #3b82f6;
    color: white;
    padding: 12px 16px;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

.btn-login:hover {
    background-color: #2563eb;
}

.btn-login:active {
    background-color: #1d4ed8;
}

.login-help {
    text-align: center;
}

.login-help a {
    font-size: 14px;
    color: #3b82f6;
    text-decoration: none;
}

.login-help a:hover {
    text-decoration: underline;
}

.register-info {
    margin-top: 24px;
    text-align: center;
}

.register-info p {
    color: #4b5563;
}

.register-info a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.register-info a:hover {
    text-decoration: underline;
}
