.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

/* Сбрасываем отступ у label, так как он теперь внутри label-row */
.form-group label {
    margin-bottom: 0;
}

.forgot-link {
    font-size: 0.85rem;
    color: var(--text-sec);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.forgot-link:hover {
    color: var(--primary);
    text-decoration: underline;
}
