/* Общие стили с умеренно жирными шрифтами */
body {
    font-weight: 450; /* Слегка жирнее обычного */
}

/* Карточка */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.375rem;
}

/* Заголовок формы */
.page-title {
    font-size: 1.75rem;
    font-weight: 600; /* Полужирный (но не самый жирный) */
    margin-bottom: 0.5rem;
}

/* Подписи полей */
.form-label {
    margin-bottom: 0.5rem;
    font-size: inherit;
    line-height: 1.5;
    display: inline-block;
    font-weight: 550; /* Умеренно жирные */
}

/* Кнопки */
.btn {
    display: inline-block;
    font-weight: 550; /* Было 400, стало умеренно жирное */
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 50rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.btn-lg {
    font-weight: 600; /* Чуть жирнее для больших кнопок */
}

/* Чекбоксы */
.form-check-label {
    margin-bottom: 0;
    font-weight: 500; /* Немного жирнее обычного */
}

/* Остальные стили остаются без изменений */
.vh-100 { min-height: 100vh; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.p-4 { padding: 1.5rem !important; }
.text-center { text-align: center !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.form-group { margin-bottom: 1rem; }

/* Общие стили для замены Bootstrap */
.vh-100 {
    min-height: 100vh;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

/* Карточка */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.375rem;
}

.p-4 {
    padding: 1.5rem !important;
}

/* Текст и отступы */
.text-center {
    text-align: center !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

/* Формы */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    margin-bottom: 0.5rem;
    font-size: inherit;
    line-height: 1.5;
    display: inline-block;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Чекбокс */
.form-check {
    position: relative;
    display: block;
    padding-left: 1.25em;
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    border: 1px solid #ced4da;
    appearance: none;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-label {
    margin-bottom: 0;
}

/* Кнопки */
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 50rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.d-grid {
    display: grid;
}

/* Дополнительные стили */
.page-title {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}